mirror of
https://github.com/decompals/wibo.git
synced 2025-12-12 06:45:05 +00:00
11 lines
220 B
C++
11 lines
220 B
C++
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
namespace kernel32 {
|
|
|
|
BOOL WINAPI QueryPerformanceCounter(LARGE_INTEGER *lpPerformanceCount);
|
|
BOOL WINAPI QueryPerformanceFrequency(LARGE_INTEGER *lpFrequency);
|
|
|
|
} // namespace kernel32
|