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
69f4a90a
Commit
69f4a90a
authored
Dec 19, 2000
by
Guy L. Albertelli
Committed by
Alexandre Julliard
Dec 19, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add notify structures NMMOUSE, NMOBJECTNOTIFY, NMKEY, and NMCHAR.
parent
a257b96d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
0 deletions
+37
-0
commctrl.h
include/commctrl.h
+37
-0
No files found.
include/commctrl.h
View file @
69f4a90a
...
...
@@ -130,6 +130,43 @@ typedef struct tagNMTOOLTIPSCREATED
HWND
hwndToolTips
;
}
NMTOOLTIPSCREATED
,
*
LPNMTOOLTIPSCREATED
;
typedef
struct
tagNMMOUSE
{
NMHDR
hdr
;
DWORD
dwItemSpec
;
DWORD
dwItemData
;
POINT
pt
;
DWORD
dwHitInfo
;
/* info where on item or control the mouse is */
}
NMMOUSE
,
*
LPNMMOUSE
;
typedef
struct
tagNMOBJECTNOTIFY
{
NMHDR
hdr
;
int
iItem
;
#ifdef __IID_DEFINED__
const
IID
*
piid
;
#else
const
void
*
piid
;
#endif
void
*
pObject
;
HRESULT
hResult
;
DWORD
dwFlags
;
}
NMOBJECTNOTIFY
,
*
LPNMOBJECTNOTIFY
;
typedef
struct
tagNMKEY
{
NMHDR
hdr
;
UINT
nVKey
;
UINT
uFlags
;
}
NMKEY
,
*
LPNMKEY
;
typedef
struct
tagNMCHAR
{
NMHDR
hdr
;
UINT
ch
;
DWORD
dwItemPrev
;
/* Item previously selected */
DWORD
dwItemNext
;
/* Item to be selected */
}
NMCHAR
,
*
LPNMCHAR
;
#ifndef CCSIZEOF_STRUCT
#define CCSIZEOF_STRUCT(name, member) \
...
...
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