Skip to content
Snippets Groups Projects
Commit 8b21b6b3 authored by Gerard Patel's avatar Gerard Patel Committed by Alexandre Julliard
Browse files

Added version info.

parent 39f54283
No related branches found
No related tags found
No related merge requests found
......@@ -86,5 +86,8 @@ HWND COMCTL32_CreateToolTip (HWND);
INT Str_GetPtrWtoA (LPCWSTR lpSrc, LPSTR lpDest, INT nMaxLen);
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 */
......@@ -14,6 +14,7 @@
#include "debugtools.h"
#include "winerror.h"
#include "shlwapi.h"
#include "comctl32.h"
DEFAULT_DEBUG_CHANNEL(commctrl);
......@@ -882,8 +883,8 @@ COMCTL32_DllGetVersion (DLLVERSIONINFO *pdvi)
return E_INVALIDARG;
}
pdvi->dwMajorVersion = 5;
pdvi->dwMinorVersion = 0;
pdvi->dwMajorVersion = COMCTL32_VERSION;
pdvi->dwMinorVersion = COMCTL32_VERSION_MINOR;
pdvi->dwBuildNumber = 2919;
pdvi->dwPlatformID = 6304;
......
......@@ -7,6 +7,7 @@
#include "winuser.h"
#include "winnls.h"
#include "comctl32.h"
#include "wine/wine_common_ver.rc"
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment