Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
8b21b6b3
Commit
8b21b6b3
authored
Mar 16, 2001
by
Gerard Patel
Committed by
Alexandre Julliard
Mar 16, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added version info.
parent
39f54283
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
comctl32.h
dlls/comctl32/comctl32.h
+3
-0
commctrl.c
dlls/comctl32/commctrl.c
+3
-2
rsrc.rc
dlls/comctl32/rsrc.rc
+1
-0
No files found.
dlls/comctl32/comctl32.h
View file @
8b21b6b3
...
@@ -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 */
dlls/comctl32/commctrl.c
View file @
8b21b6b3
...
@@ -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
;
...
...
dlls/comctl32/rsrc.rc
View file @
8b21b6b3
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment