mirror of
https://github.com/XboxDev/nxdk.git
synced 2026-04-03 13:53:19 +00:00
22 lines
357 B
C
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
|