-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SSE: - Final patch check .dds texture
- Loading branch information
Showing
7 changed files
with
106 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
Creation Kit Platform Extended Core/Editor API/SSE/BSResources.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Copyright © 2023-2024 aka perchik71. All rights reserved. | ||
// Contacts: <email:[email protected]> | ||
// License: https://www.gnu.org/licenses/gpl-3.0.html | ||
|
||
#pragma once | ||
|
||
#include "BSFixedString.h" | ||
|
||
#pragma pack(push, 1) | ||
|
||
namespace CreationKitPlatformExtended | ||
{ | ||
namespace EditorAPI | ||
{ | ||
namespace SkyrimSpectialEdition | ||
{ | ||
namespace BSResource | ||
{ | ||
class LooseFileStream | ||
{ | ||
char pad08[0x20]; | ||
EditorAPI::SkyrimSpectialEdition::BSFixedString FileName; | ||
public: | ||
virtual ~LooseFileStream(); | ||
|
||
const EditorAPI::SkyrimSpectialEdition::BSFixedString GetFileName() const noexcept(true) { return FileName; } | ||
}; | ||
} | ||
|
||
class BSResourceNiBinaryStream | ||
{ | ||
char pad00[0x10]; | ||
void* ReadFuncPtr; | ||
void* WriteFuncPtr; | ||
BSResource::LooseFileStream* Stream; | ||
public: | ||
inline const BSResource::LooseFileStream* GetStream() const noexcept(true) { return Stream; } | ||
}; | ||
static_assert(sizeof(BSResourceNiBinaryStream) == 0x28); | ||
} | ||
} | ||
} | ||
|
||
#pragma pack(pop) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+0 Bytes
(100%)
Creation Kit Platform Extended Core/Version/build_version.txt
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Creation Kit Platform Extended Core/Version/resource_version2.h
Binary file not shown.