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
e5fe735d
Commit
e5fe735d
authored
Aug 11, 2000
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved NM_UPDOWN definition to commctrl.h.
parent
331f80e4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
8 deletions
+10
-8
updown.c
dlls/comctl32/updown.c
+0
-7
commctrl.h
include/commctrl.h
+10
-1
No files found.
dlls/comctl32/updown.c
View file @
e5fe735d
...
...
@@ -56,13 +56,6 @@ typedef struct
INT
Flags
;
/* Internal Flags FLAG_* */
}
UPDOWN_INFO
;
typedef
struct
tagNM_UPDOWN
{
NMHDR
hdr
;
int
iPos
;
int
iDelta
;
}
NM_UPDOWN
;
/* Control configuration constants */
#define INITIAL_DELAY 500
/* initial timer until auto-increment kicks in */
...
...
include/commctrl.h
View file @
e5fe735d
...
...
@@ -101,7 +101,6 @@ VOID WINAPI InitMUILanguage (LANGID uiLang);
#define NM_SETCURSOR (NM_FIRST-17)
#define NM_CHAR (NM_FIRST-18)
#define NM_TOOLTIPSCREATED (NM_FIRST-19)
#define NMUPDOWN NM_UPDOWN
/* callback constants */
#define LPSTR_TEXTCALLBACKA ((LPSTR)-1L)
...
...
@@ -342,6 +341,16 @@ typedef struct tagUDACCEL
#define UDM_SETRANGE32 (WM_USER+111)
#define UDM_GETRANGE32 (WM_USER+112)
#define NMUPDOWN NM_UPDOWN
#define LPNMUPDOWN LPNM_UPDOWN
typedef
struct
tagNM_UPDOWN
{
NMHDR
hdr
;
int
iPos
;
int
iDelta
;
}
NM_UPDOWN
,
*
LPNM_UPDOWN
;
HWND
WINAPI
CreateUpDownControl
(
DWORD
,
INT
,
INT
,
INT
,
INT
,
HWND
,
INT
,
HINSTANCE
,
HWND
,
INT
,
INT
,
INT
);
...
...
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