mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
[shlwapi]
- QISearch should be exported by ordinal just like win2003 - Add OFFSETOFCLASS macro svn path=/trunk/; revision=60595
This commit is contained in:
parent
fa9a309262
commit
1a3f9719b5
2 changed files with 4 additions and 1 deletions
|
@ -216,7 +216,7 @@
|
|||
216 stdcall -noname SHAnsiToUnicodeCP(long str ptr long)
|
||||
217 stdcall -ordinal SHUnicodeToAnsi(wstr ptr ptr)
|
||||
218 stdcall -noname SHUnicodeToAnsiCP(long wstr ptr long)
|
||||
219 stdcall QISearch(long long long long)
|
||||
219 stdcall -noname QISearch(long long long long)
|
||||
220 stdcall -noname SHSetDefaultDialogFont(ptr long)
|
||||
221 stdcall -noname SHRemoveDefaultDialogFont(ptr)
|
||||
222 stdcall -noname SHGlobalCounterCreate(long)
|
||||
|
|
|
@ -2038,6 +2038,9 @@ QISearch(
|
|||
_In_ REFIID riid,
|
||||
_Outptr_ void **ppv);
|
||||
|
||||
#define OFFSETOFCLASS(base, derived) \
|
||||
((DWORD)(DWORD_PTR)(static_cast<base*>((derived*)8))-8)
|
||||
|
||||
#include <poppack.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
Loading…
Reference in a new issue