Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions include/EAStdC/EAStopwatch.h
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,11 @@ namespace StdC
// You can disable usage of QueryPerformanceCounter below by defining
// EASTDC_STOPWATCH_FORCE_CPU_CYCLE_USAGE as 1.
// hardcode prototype here so we don't pull in <windows.h>

#if !defined(_Out_)
#define _Out_
#endif

extern "C" __declspec(dllimport) int __stdcall QueryPerformanceCounter(_Out_ union _LARGE_INTEGER *lpPerformanceCount);

inline uint64_t EA::StdC::Stopwatch::GetStopwatchCycle()
Expand Down