mirror of
https://github.com/tiennm99/time-mocker-cpp.git
synced 2026-06-08 14:13:44 +00:00
8 lines
199 B
C++
8 lines
199 B
C++
#include <Windows.h>
|
|
|
|
// Exported sentinel — lets the injector verify the DLL was built correctly
|
|
extern "C" __declspec(dllexport) DWORD TimeMockerHookVersion()
|
|
{
|
|
return 0x0001'0000; // v1.0
|
|
}
|