[redcode/crythread-2nd-pass] re-add LARGE_INTEGER definition to AppleSpecific.h

Signed-off-by: AMZN-ScottR <24445312+AMZN-ScottR@users.noreply.github.com>
monroegm-disable-blank-issue-2
AMZN-ScottR 4 years ago
parent 3fc0a197a0
commit bbe6ff7b90

@ -458,6 +458,21 @@ typedef HANDLE HMENU;
#endif //__cplusplus
typedef union _LARGE_INTEGER
{
struct
{
DWORD LowPart;
LONG HighPart;
};
struct
{
DWORD LowPart;
LONG HighPart;
} u;
long long QuadPart;
} LARGE_INTEGER;
extern bool QueryPerformanceCounter(LARGE_INTEGER*);
extern bool QueryPerformanceFrequency(LARGE_INTEGER* frequency);

Loading…
Cancel
Save