mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
feat(profile): update gx headers
This commit is contained in:
parent
37b206a6e3
commit
ad24eab0a4
16 changed files with 251 additions and 84 deletions
15
profile/3.3.5a-windows-386/include/external/win/guid.h
vendored
Normal file
15
profile/3.3.5a-windows-386/include/external/win/guid.h
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#ifndef WIN_GUID_H
|
||||
#define WIN_GUID_H
|
||||
|
||||
DECLARE_STRUCT(GUID);
|
||||
|
||||
#include "system/types.h"
|
||||
|
||||
struct GUID {
|
||||
uint32_t Data1;
|
||||
uint16_t Data2;
|
||||
uint16_t Data3;
|
||||
uint8_t Data4[8];
|
||||
};
|
||||
|
||||
#endif
|
||||
8
profile/3.3.5a-windows-386/include/external/win/handle.h
vendored
Normal file
8
profile/3.3.5a-windows-386/include/external/win/handle.h
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#ifndef WIN_HANDLE_H
|
||||
#define WIN_HANDLE_H
|
||||
|
||||
typedef void* HANDLE;
|
||||
typedef void* HWND;
|
||||
typedef void* HINSTANCE;
|
||||
|
||||
#endif
|
||||
10
profile/3.3.5a-windows-386/include/external/win/largeinteger.h
vendored
Normal file
10
profile/3.3.5a-windows-386/include/external/win/largeinteger.h
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#ifndef WIN_LARGEINTEGER_H
|
||||
#define WIN_LARGEINTEGER_H
|
||||
|
||||
DECLARE_STRUCT(LARGE_INTEGER);
|
||||
|
||||
struct LARGE_INTEGER {
|
||||
int64_t QuadPart;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue