From 5f4cdfcd8a1d6ec89dc85597bdbf8b12bfac6156 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 8 Aug 2005 17:42:57 +0000 Subject: [PATCH] Added a prototype for DllGetVersion to enable type checking in the Wine source. --- include/shlwapi.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/shlwapi.h b/include/shlwapi.h index a79e5d82944..3e75d14da47 100644 --- a/include/shlwapi.h +++ b/include/shlwapi.h @@ -976,6 +976,11 @@ typedef struct _DllVersionInfo { typedef HRESULT (CALLBACK *DLLGETVERSIONPROC)(DLLVERSIONINFO *); +#ifdef __WINESRC__ +/* shouldn't be here, but is nice for type checking */ +HRESULT WINAPI DllGetVersion(DLLVERSIONINFO *); +#endif + typedef struct _DLLVERSIONINFO2 { DLLVERSIONINFO info1; DWORD dwFlags; /* Reserved */