Andrew Talbot : slwapi: Make function definitions and declarations agree.
Module: wine Branch: master Commit: 0110f9ea0bd6313a5d82a926c72581391035abd5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0110f9ea0bd6313a5d82a926c7... Author: Andrew Talbot <Andrew.Talbot(a)talbotville.com> Date: Sat Apr 14 13:48:21 2007 +0100 slwapi: Make function definitions and declarations agree. --- dlls/shlwapi/reg.c | 2 +- dlls/shlwapi/thread.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/shlwapi/reg.c b/dlls/shlwapi/reg.c index fe77ddb..bdfea24 100644 --- a/dlls/shlwapi/reg.c +++ b/dlls/shlwapi/reg.c @@ -54,7 +54,7 @@ typedef struct { WCHAR lpszPath[MAX_PATH]; } SHUSKEY, *LPSHUSKEY; -DWORD WINAPI SHStringFromGUIDW(REFGUID,LPWSTR,INT); +INT WINAPI SHStringFromGUIDW(REFGUID,LPWSTR,INT); HRESULT WINAPI SHRegGetCLSIDKeyW(REFGUID,LPCWSTR,BOOL,BOOL,PHKEY); diff --git a/dlls/shlwapi/thread.c b/dlls/shlwapi/thread.c index 335b8ab..1affb79 100644 --- a/dlls/shlwapi/thread.c +++ b/dlls/shlwapi/thread.c @@ -40,7 +40,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(shell); extern DWORD SHLWAPI_ThreadRef_index; /* Initialised in shlwapi_main.c */ -DWORD WINAPI SHStringFromGUIDA(REFGUID,LPSTR,INT); +INT WINAPI SHStringFromGUIDA(REFGUID,LPSTR,INT); /************************************************************************** * _CreateAllAccessSecurityAttributes [SHLWAPI.356]
participants (1)
-
Alexandre Julliard