Added a prototype for DllGetVersion to enable type checking in the
Wine source.
This commit is contained in:
parent
d37f0abf07
commit
5f4cdfcd8a
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue