Francois Gouget : advapi32: Add a prototype for RegDeleteKeyValue*().
Module: wine Branch: master Commit: e1987a524fead9f9dbeacedc85801ebb814e16d5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e1987a524fead9f9dbeacedc85... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Thu Aug 9 10:32:35 2007 +0200 advapi32: Add a prototype for RegDeleteKeyValue*(). --- include/winreg.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/winreg.h b/include/winreg.h index 9d246c2..ac8f570 100644 --- a/include/winreg.h +++ b/include/winreg.h @@ -155,6 +155,9 @@ LONG WINAPI RegCreateKeyW(HKEY,LPCWSTR,PHKEY); LONG WINAPI RegDeleteKeyA(HKEY,LPCSTR); LONG WINAPI RegDeleteKeyW(HKEY,LPCWSTR); #define RegDeleteKey WINELIB_NAME_AW(RegDeleteKey) +LONG WINAPI RegDeleteKeyValueA(HKEY,LPCSTR,LPCSTR); +LONG WINAPI RegDeleteKeyValueW(HKEY,LPCWSTR,LPCWSTR); +#define RegDeleteKeyValue WINELIB_NAME_AW(RegDeleteKeyValue) LONG WINAPI RegDeleteTreeA(HKEY,LPCSTR); LONG WINAPI RegDeleteTreeW(HKEY,LPCWSTR); #define RegDeleteTree WINELIB_NAME_AW(RegDeleteTree)
participants (1)
-
Alexandre Julliard