Commit 8b21b6b3 authored by Gerard Patel's avatar Gerard Patel Committed by Alexandre Julliard

Added version info.

parent 39f54283
...@@ -86,5 +86,8 @@ HWND COMCTL32_CreateToolTip (HWND); ...@@ -86,5 +86,8 @@ HWND COMCTL32_CreateToolTip (HWND);
INT Str_GetPtrWtoA (LPCWSTR lpSrc, LPSTR lpDest, INT nMaxLen); INT Str_GetPtrWtoA (LPCWSTR lpSrc, LPSTR lpDest, INT nMaxLen);
BOOL Str_SetPtrAtoW (LPWSTR *lppDest, LPCSTR lpSrc); BOOL Str_SetPtrAtoW (LPWSTR *lppDest, LPCSTR lpSrc);
#define COMCTL32_VERSION_MINOR 0
#define WINE_FILEVERSION 5, COMCTL32_VERSION_MINOR, 0, 0
#define WINE_FILEVERSIONSTR "5.00"
#endif /* __WINE_COMCTL32_H */ #endif /* __WINE_COMCTL32_H */
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
#include "debugtools.h" #include "debugtools.h"
#include "winerror.h" #include "winerror.h"
#include "shlwapi.h" #include "shlwapi.h"
#include "comctl32.h"
DEFAULT_DEBUG_CHANNEL(commctrl); DEFAULT_DEBUG_CHANNEL(commctrl);
...@@ -882,8 +883,8 @@ COMCTL32_DllGetVersion (DLLVERSIONINFO *pdvi) ...@@ -882,8 +883,8 @@ COMCTL32_DllGetVersion (DLLVERSIONINFO *pdvi)
return E_INVALIDARG; return E_INVALIDARG;
} }
pdvi->dwMajorVersion = 5; pdvi->dwMajorVersion = COMCTL32_VERSION;
pdvi->dwMinorVersion = 0; pdvi->dwMinorVersion = COMCTL32_VERSION_MINOR;
pdvi->dwBuildNumber = 2919; pdvi->dwBuildNumber = 2919;
pdvi->dwPlatformID = 6304; pdvi->dwPlatformID = 6304;
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
#include "winuser.h" #include "winuser.h"
#include "winnls.h" #include "winnls.h"
#include "comctl32.h" #include "comctl32.h"
#include "wine/wine_common_ver.rc"
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment