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