diff --git a/include/commctrl.h b/include/commctrl.h index 544f5e223ce..e483cb4e085 100644 --- a/include/commctrl.h +++ b/include/commctrl.h @@ -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 */