- Fix typo in previous change.
- Add structures for CBEN_INSERTITEM notify message.
This commit is contained in:
parent
d0f41e0894
commit
e13633b9e5
|
@ -3286,7 +3286,7 @@ typedef struct tagCOMBOBOXEXITEMW
|
|||
typedef struct tagNMCBEENDEDITW
|
||||
{
|
||||
NMHDR hdr;
|
||||
BOOL fChandged;
|
||||
BOOL fChanged;
|
||||
int iNewSelection;
|
||||
WCHAR szText[CBEMAXSTRLEN];
|
||||
int iWhy;
|
||||
|
@ -3306,6 +3306,21 @@ typedef struct tagNMCBEENDEDITA
|
|||
#define PNMCBEENDEDIT WINELIB_NAME_AW(PNMCBEENDEDIT)
|
||||
|
||||
|
||||
typedef struct tagNMCOMBOBOXEXA
|
||||
{
|
||||
NMHDR hdr;
|
||||
COMBOBOXEXITEMA ceItem;
|
||||
} NMCOMBOBOXEXA, *PNMCOMBOBOXEXA;
|
||||
|
||||
typedef struct tagNMCOMBOBOXEXW
|
||||
{
|
||||
NMHDR hdr;
|
||||
COMBOBOXEXITEMW ceItem;
|
||||
} NMCOMBOBOXEXW, *PNMCOMBOBOXEXW;
|
||||
|
||||
#define NMCOMBOBOXEX WINELIB_NAME_AW(NMCOMBOBOXEX)
|
||||
#define PNMCOMBOBOXEX WINELIB_NAME_AW(PNMCOMBOBOXEX)
|
||||
|
||||
|
||||
/* Hotkey control */
|
||||
|
||||
|
|
Loading…
Reference in New Issue