mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[KERNEL32]
- Get rid of the GetTickCount64 export, now in kernel32_vista.dll - Add a few "-norelay" clauses when relay tracing is enabled svn path=/trunk/; revision=64283
This commit is contained in:
parent
bb26155bdd
commit
af46c1ee60
2 changed files with 10 additions and 10 deletions
|
@ -710,7 +710,6 @@ OpenFileById(IN HANDLE hFile,
|
|||
return INVALID_HANDLE_VALUE;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
|
@ -735,6 +734,8 @@ GetTickCount64(VOID)
|
|||
(UInt32x32To64(TickCount.HighPart, SharedUserData->TickCountMultiplier) << 8);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
/*
|
||||
Vista+ MUI support functions
|
||||
|
||||
|
|
|
@ -325,11 +325,11 @@
|
|||
@ stdcall GetCurrentConsoleFont(long long ptr)
|
||||
@ stdcall GetCurrentDirectoryA(long ptr)
|
||||
@ stdcall GetCurrentDirectoryW(long ptr)
|
||||
@ stdcall GetCurrentProcess()
|
||||
@ stdcall GetCurrentProcessId()
|
||||
@ stdcall -norelay GetCurrentProcess()
|
||||
@ stdcall -norelay GetCurrentProcessId()
|
||||
@ stdcall GetCurrentProcessorNumber() ntdll.RtlGetCurrentProcessorNumber
|
||||
@ stdcall GetCurrentThread()
|
||||
@ stdcall GetCurrentThreadId()
|
||||
@ stdcall -norelay GetCurrentThread()
|
||||
@ stdcall -norelay GetCurrentThreadId()
|
||||
@ stdcall GetDateFormatA(long long ptr str ptr long)
|
||||
@ stdcall GetDateFormatW(long long ptr wstr ptr long)
|
||||
@ stdcall GetDefaultCommConfigA(str ptr long)
|
||||
|
@ -422,7 +422,7 @@
|
|||
@ stdcall GetProcAddress(long str)
|
||||
@ stdcall GetProcessAffinityMask(long ptr ptr)
|
||||
@ stdcall GetProcessHandleCount(long ptr)
|
||||
@ stdcall GetProcessHeap()
|
||||
@ stdcall -norelay GetProcessHeap()
|
||||
@ stdcall GetProcessHeaps(long ptr)
|
||||
@ stdcall GetProcessId(long)
|
||||
@ stdcall GetProcessIdOfThread(ptr)
|
||||
|
@ -682,7 +682,7 @@
|
|||
@ stdcall QueryPerformanceFrequency(ptr)
|
||||
@ stdcall QueueUserAPC(ptr long long)
|
||||
@ stdcall QueueUserWorkItem(ptr ptr long)
|
||||
@ stdcall RaiseException(long long long ptr)
|
||||
@ stdcall -norelay RaiseException(long long long ptr)
|
||||
@ stdcall ReOpenFile(ptr long long long)
|
||||
@ stdcall ReadConsoleA(long ptr long ptr ptr)
|
||||
@ stdcall ReadConsoleInputA(long ptr long ptr)
|
||||
|
@ -884,8 +884,8 @@
|
|||
@ stdcall Thread32Next(long ptr)
|
||||
@ stdcall TlsAlloc()
|
||||
@ stdcall TlsFree(long)
|
||||
@ stdcall TlsGetValue(long)
|
||||
@ stdcall TlsSetValue(long ptr)
|
||||
@ stdcall -norelay TlsGetValue(long)
|
||||
@ stdcall -norelay TlsSetValue(long ptr)
|
||||
@ stdcall Toolhelp32ReadProcessMemory(long ptr ptr long ptr)
|
||||
@ stdcall TransactNamedPipe(long ptr long ptr long ptr ptr)
|
||||
@ stdcall TransmitCommChar(long long)
|
||||
|
@ -1002,4 +1002,3 @@
|
|||
;@ stdcall -arch=x86_64 uaw_wcslen(wstr)
|
||||
;@ stdcall -arch=x86_64 uaw_wcsrchr(wstr long)
|
||||
|
||||
@ stdcall GetTickCount64() ; FOR WINE
|
||||
|
|
Loading…
Reference in a new issue