3
0
mirror of https://github.com/XboxDev/nxdk.git synced 2026-04-03 13:53:19 +00:00
Files
nxdk/lib/winapi/profileapi.h
2022-03-22 12:46:39 +10:30

22 lines
357 B
C

// SPDX-License-Identifier: MIT
// SPDX-FileCopyrightText: 2019 Stefan Schmidt
#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