Implemented, documented or fixed SHDeleteOrphanKeyA/W, SHEnumKeyExA/W,
SHEnumValueA/W, SHQueryInfoKeyA/W. SHRegGetPathA/W, SHRegSetPathA/W, SHGetValueA/W, SHSetValueA/W, SHQueryValueExA/W, SHDeleteKeyA/W, SHDeleteEmptyKeyA/W, SHDeleteValueA/W, ordinals 320-323.
This commit is contained in:
parent
9aa748cb2a
commit
de51f61584
1006
dlls/shlwapi/reg.c
1006
dlls/shlwapi/reg.c
File diff suppressed because it is too large
Load Diff
|
@ -565,14 +565,14 @@ debug_channels (shell)
|
|||
@ stdcall SHDeleteEmptyKeyW(long ptr) SHDeleteEmptyKeyW
|
||||
@ stdcall SHDeleteKeyA(long str) SHDeleteKeyA
|
||||
@ stdcall SHDeleteKeyW(long wstr) SHDeleteKeyW
|
||||
@ stub SHDeleteOrphanKeyA
|
||||
@ stub SHDeleteOrphanKeyW
|
||||
@ stdcall SHDeleteOrphanKeyA(long str) SHDeleteOrphanKeyA
|
||||
@ stdcall SHDeleteOrphanKeyW(long wstr) SHDeleteOrphanKeyW
|
||||
@ stdcall SHDeleteValueA(long str str) SHDeleteValueA
|
||||
@ stdcall SHDeleteValueW(long wstr wstr) SHDeleteValueW
|
||||
@ stub SHEnumKeyExA
|
||||
@ stub SHEnumKeyExW
|
||||
@ stub SHEnumValueA
|
||||
@ stub SHEnumValueW
|
||||
@ stdcall SHEnumKeyExA(long long str ptr) SHEnumKeyExA
|
||||
@ stdcall SHEnumKeyExW(long long wstr ptr) SHEnumKeyExW
|
||||
@ stdcall SHEnumValueA(long long str ptr ptr ptr ptr) SHEnumValueA
|
||||
@ stdcall SHEnumValueW(long long wstr ptr ptr ptr ptr) SHEnumValueW
|
||||
@ stdcall SHGetInverseCMAP ( ptr long ) SHGetInverseCMAP
|
||||
@ stdcall SHGetValueA ( long str str ptr ptr ptr ) SHGetValueA
|
||||
@ stdcall SHGetValueW ( long wstr wstr ptr ptr ptr ) SHGetValueW
|
||||
|
@ -581,8 +581,8 @@ debug_channels (shell)
|
|||
@ stdcall SHOpenRegStreamW(long wstr str long)SHOpenRegStreamW
|
||||
@ stdcall SHOpenRegStream2A(long str str long)SHOpenRegStreamA
|
||||
@ stdcall SHOpenRegStream2W(long wstr str long)SHOpenRegStreamW
|
||||
@ stub SHQueryInfoKeyA
|
||||
@ stub SHQueryInfoKeyW
|
||||
@ stdcall SHQueryInfoKeyA(long ptr ptr ptr ptr) SHQueryInfoKeyA
|
||||
@ stdcall SHQueryInfoKeyW(long ptr ptr ptr ptr) SHQueryInfoKeyW
|
||||
@ stdcall SHQueryValueExA(long str ptr ptr ptr ptr) SHQueryValueExA
|
||||
@ stdcall SHQueryValueExW(long wstr ptr ptr ptr ptr) SHQueryValueExW
|
||||
@ stdcall SHRegCloseUSKey(ptr) SHRegCloseUSKey
|
||||
|
@ -724,8 +724,8 @@ debug_channels (shell)
|
|||
@ stub SHCreateThread
|
||||
@ stub SHGetThreadRef
|
||||
@ stdcall SHRegDuplicateHKey (long) SHRegDuplicateHKey
|
||||
@ stub SHRegSetPathA
|
||||
@ stub SHRegSetPathW
|
||||
@ stdcall SHRegSetPathA(long str str str long) SHRegSetPathA
|
||||
@ stdcall SHRegSetPathW(long wstr wstr wstr long) SHRegSetPathW
|
||||
@ stub SHRegisterValidateTemplate
|
||||
@ stub SHSetThreadRef
|
||||
@ stub SHSkipJunction
|
||||
|
|
|
@ -32,8 +32,8 @@ DWORD WINAPI SHSetValueA(HKEY,LPCSTR,LPCSTR,DWORD,LPCVOID,DWORD);
|
|||
DWORD WINAPI SHSetValueW(HKEY,LPCWSTR,LPCWSTR,DWORD,LPCVOID,DWORD);
|
||||
#define SHSetValue WINELIB_NAME_AW(SHSetValue)
|
||||
|
||||
DWORD WINAPI SHQueryValueExA(HKEY,LPCSTR,LPDWORD,LPDWORD,LPBYTE, LPDWORD);
|
||||
DWORD WINAPI SHQueryValueExW(HKEY,LPCWSTR,LPDWORD,LPDWORD,LPVOID, LPDWORD);
|
||||
DWORD WINAPI SHQueryValueExA(HKEY,LPCSTR,LPDWORD,LPDWORD,LPVOID,LPDWORD);
|
||||
DWORD WINAPI SHQueryValueExW(HKEY,LPCWSTR,LPDWORD,LPDWORD,LPVOID,LPDWORD);
|
||||
#define SHQueryValueEx WINELIB_NAME_AW(SHQueryValueEx)
|
||||
|
||||
LONG WINAPI SHEnumKeyExA(HKEY,DWORD,LPSTR,LPDWORD);
|
||||
|
|
Loading…
Reference in New Issue