We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Demo to reproduce:
#include <iostream> #include <Windows.h> #include <time.h> #pragma comment(lib, "winmm.lib") int main() { HMODULE hMod = LoadLibrary(L"UptimeFaker32.dll"); if (!hMod) return 1; DWORD tickCount = GetTickCount(); DWORD time = timeGetTime(); std::cout << "GetTickCount: " << tickCount << std::endl; std::cout << "timeGetTime: " << time << std::endl; return 0; }
Console results:
QueryPerformanceCounter=0
GetTickCount: 26363796 timeGetTime: 26363796
QueryPerformanceCounter=1 (and 49 days)
QueryPerformanceCounter=1
GetTickCount: 4259980812 timeGetTime: 4259980812
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Demo to reproduce:
Console results:
QueryPerformanceCounter=0
QueryPerformanceCounter=1
(and 49 days)The text was updated successfully, but these errors were encountered: