mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
feat(console): add more work to understand ConsoleDeviceInitialize
This commit is contained in:
parent
9df5775a17
commit
6cda64dfc4
16 changed files with 224 additions and 28 deletions
34
profile/3.3.5a-windows-386/include/storm/options.h
Normal file
34
profile/3.3.5a-windows-386/include/storm/options.h
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
#ifndef STORM_OPTIONS_H
|
||||
#define STORM_OPTIONS_H
|
||||
|
||||
DECLARE_STRUCT(STORMOPTIONS);
|
||||
|
||||
struct STORMOPTIONS {
|
||||
// int smemleaksilentwarning;
|
||||
// int serrleaksilentwarning;
|
||||
// unsigned int wavechunksize;
|
||||
// int alignstreamingwavedata;
|
||||
// int echotooutputdebugstring;
|
||||
// int serrsuppresslogs;
|
||||
// int crcenabled;
|
||||
// int orderedprintfenabled;
|
||||
// int noreaderrordialog;
|
||||
// int assertlogonly;
|
||||
// int serrsuppressdialogs;
|
||||
// int serrignorerecoverable;
|
||||
|
||||
// uint64_t opt00; // dword_CAE950
|
||||
int32_t smemleaksilentwarning; // dword_CAE958
|
||||
int32_t serrleaksilentwarning; // dword_CAE95C
|
||||
uint32_t wavechunksize; // dword_CAE960
|
||||
int32_t opt0C; // dword_CAE964
|
||||
int32_t opt10; // dword_CAE968
|
||||
int32_t opt14; // dword_CAE96C
|
||||
int32_t opt18; // dword_CAE970
|
||||
int32_t opt1C; // dword_CAE974
|
||||
int32_t sregunicode; // dword_CAE978
|
||||
int32_t opt24; // dword_CAE97C
|
||||
int32_t opt28; // dword_CAE980
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
@ -1,9 +1,13 @@
|
|||
#ifndef STORM_THREAD_H
|
||||
#define STORM_THREAD_H
|
||||
|
||||
DECLARE_STRUCT(SCritSect);
|
||||
DECLARE_STRUCT(SSyncObject);
|
||||
DECLARE_STRUCT(SEvent);
|
||||
DECLARE_STRUCT(SThread);
|
||||
|
||||
#include "system/types.h"
|
||||
|
||||
DECLARE_STRUCT(SCritSect);
|
||||
typedef struct CSRWLock CSRWLock;
|
||||
|
||||
struct SCritSect {
|
||||
|
|
@ -14,4 +18,17 @@ struct CSRWLock {
|
|||
uint8_t m_opaqueData[12];
|
||||
};
|
||||
|
||||
struct SSyncObject {
|
||||
// HANDLE
|
||||
void* m_opaqueData;
|
||||
};
|
||||
|
||||
struct SEvent {
|
||||
SSyncObject b_base;
|
||||
};
|
||||
|
||||
struct SThread {
|
||||
SSyncObject b_base;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue