3
0
mirror of https://github.com/XboxDev/nxdk.git synced 2026-02-05 12:45:38 +00:00
Files
nxdk/lib/winapi/profileapi.h

18 lines
276 B
C

#ifndef __PROFILEAPI_H__
#define __PROFILEAPI_H__
#include <windef.h>
#ifdef __cplusplus
extern "C" {
#endif
BOOL QueryPerformanceCounter (LARGE_INTEGER *lpPerformanceCount);
BOOL QueryPerformanceFrequency (LARGE_INTEGER *lpFrequency);
#ifdef __cplusplus
}
#endif
#endif