Added version info.
This commit is contained in:
parent
39f54283fc
commit
8b21b6b33a
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue