Skip to content

Commit

Permalink
Release hotfix. forgot to also add .h header files for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
JPeterMugaas committed Mar 11, 2024
1 parent 358b7fc commit c053aeb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion efxc2Cmds.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void cmd_E(_In_ int verbose,
_Out_ char** entryPoint,
_In_ const wchar_t* w_entryPoint);
#else
_In_ char* w_entryPoint);
_In_ char* w_entryPoint);
#endif
void cmd_enable_unbounded_descriptor_tables(_Inout_ UINT* sflags,
_In_ int verbose);
Expand Down
4 changes: 3 additions & 1 deletion efxc2Compiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ class Compiler {
void StripShader();
size_t WriteIncludeFile(FILE* f);
size_t WriteObjectFile(FILE* f);
char* GetPDBFileName();
private:
int verbose = 1;
UINT sflags = 0;
Expand All @@ -63,5 +64,6 @@ class Compiler {
pD3DGetBlobPartg ptr_D3DGetBlobPart;
pD3DSetBlobPartg ptr_D3DSetBlobPart;
ID3DBlob* compilerOutput = nullptr;
ID3DBlob* strippedBlob;
ID3DBlob* strippedBlob = nullptr;
ID3DBlob* pPDBName = nullptr;
};
4 changes: 4 additions & 0 deletions efxc2Utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ int readall(_In_ FILE* in,
char* setupVariableName(_In_ const char* model,
const _In_ char* entryPoint);
#ifdef _WIN32
wchar_t* utf8_decode(const char* str, int nbytes);
char* utf8_encode(const wchar_t* wstr, int nchars);
#endif
#ifdef _WIN32
char* wcharToChar(_In_ LPCWSTR w);
#endif
void WriteByteArrayConst(_In_ FILE* f,
Expand Down

0 comments on commit c053aeb

Please sign in to comment.