mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-13 10:12:28 +00:00
10 lines
140 B
C
10 lines
140 B
C
|
|
#ifndef WIN_LARGEINTEGER_H
|
||
|
|
#define WIN_LARGEINTEGER_H
|
||
|
|
|
||
|
|
DECLARE_STRUCT(LARGE_INTEGER);
|
||
|
|
|
||
|
|
struct LARGE_INTEGER {
|
||
|
|
int64_t QuadPart;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|