mirror of
https://github.com/WinDurango-project/WinDurango.git
synced 2024-11-23 19:29:40 +00:00
Added GetTickCount64
This commit is contained in:
parent
dd6f9af3e7
commit
306aa3ba62
@ -76,6 +76,7 @@ EXPORTS
|
||||
GetSystemTime = GetSystemTime_X @216
|
||||
GetSystemTimeAsFileTime = GetSystemTimeAsFileTime_X @218
|
||||
GetTickCount = GetTickCount_X @231
|
||||
GetTickCount64 = GetTickCount64_X @232
|
||||
GetTraceEnableFlags = NTDLL.EtwGetTraceEnableFlags @238
|
||||
GetTraceEnableLevel = NTDLL.EtwGetTraceEnableLevel @239
|
||||
GetTraceLoggerHandle = NTDLL.EtwGetTraceLoggerHandle @240
|
||||
|
@ -178,6 +178,11 @@ DWORD GetTickCount_X()
|
||||
return GetTickCount();
|
||||
}
|
||||
|
||||
ULONGLONG GetTickCount64_X()
|
||||
{
|
||||
return GetTickCount64();
|
||||
}
|
||||
|
||||
void RtlCaptureContext_X(PCONTEXT ContextRecord)
|
||||
{
|
||||
return RtlCaptureContext(ContextRecord);
|
||||
|
@ -47,6 +47,8 @@ extern "C"
|
||||
|
||||
DWORD GetTickCount_X();
|
||||
|
||||
ULONGLONG GetTickCount64_X();
|
||||
|
||||
void RtlCaptureContext_X(PCONTEXT ContextRecord);
|
||||
|
||||
PRUNTIME_FUNCTION RtlLookupFunctionEntry_X(DWORD64 ControlPc, PDWORD64 ImageBase, PUNWIND_HISTORY_TABLE HistoryTable);
|
||||
|
Loading…
Reference in New Issue
Block a user