Module: wine Branch: master Commit: cdd717bc1bc0a85b204d880400b37675238877c4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=cdd717bc1bc0a85b204d880400... Author: James Hawkins <truiken(a)gmail.com> Date: Wed Oct 11 11:15:02 2006 -0700 advapi32: Add missing declarations to the public headers. --- include/winbase.h | 3 +++ include/winreg.h | 1 + 2 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/winbase.h b/include/winbase.h index b6788f3..62d771f 100644 --- a/include/winbase.h +++ b/include/winbase.h @@ -1819,6 +1819,9 @@ BOOL WINAPI NotifyChangeEventLog( BOOL WINAPI ObjectCloseAuditAlarmA(LPCSTR,LPVOID,BOOL); BOOL WINAPI ObjectCloseAuditAlarmW(LPCWSTR,LPVOID,BOOL); #define ObjectCloseAuditAlarm WINELIB_NAME_AW(ObjectCloseAuditAlarm) +BOOL WINAPI ObjectDeleteAuditAlarmA(LPCSTR,LPVOID,BOOL); +BOOL WINAPI ObjectDeleteAuditAlarmW(LPCWSTR,LPVOID,BOOL); +#define ObjectDeleteAuditAlarm WINELIB_NAME_AW(ObjectDeleteAuditAlarm) BOOL WINAPI ObjectOpenAuditAlarmA(LPCSTR,LPVOID,LPSTR,LPSTR,PSECURITY_DESCRIPTOR,HANDLE, DWORD,DWORD,PPRIVILEGE_SET,BOOL,BOOL,LPBOOL); BOOL WINAPI ObjectOpenAuditAlarmW(LPCWSTR,LPVOID,LPWSTR,LPWSTR,PSECURITY_DESCRIPTOR,HANDLE, diff --git a/include/winreg.h b/include/winreg.h index a547c56..c694052 100644 --- a/include/winreg.h +++ b/include/winreg.h @@ -94,6 +94,7 @@ LONG WINAPI RegCreateKeyExA(HKEY, LONG WINAPI RegCreateKeyExW(HKEY,LPCWSTR,DWORD,LPWSTR,DWORD,REGSAM, LPSECURITY_ATTRIBUTES,PHKEY,LPDWORD); #define RegCreateKeyEx WINELIB_NAME_AW(RegCreateKeyEx) +LONG WINAPI RegDisablePredefinedCache(void); LONG WINAPI RegSaveKeyA(HKEY,LPCSTR,LPSECURITY_ATTRIBUTES); LONG WINAPI RegSaveKeyW(HKEY,LPCWSTR,LPSECURITY_ATTRIBUTES); #define RegSaveKey WINELIB_NAME_AW(RegSaveKey)