| * Copyright 1993 Alexandre Julliard |
| extern BOOL DIALOG_Init(void); |
| extern HWND DIALOG_GetFirstTabItem( HWND hwndDlg ); |
| /* Dialog info structure. |
| * This structure is stored into the window extra bytes (cbWndExtra). |
| * sizeof(DIALOGINFO) must be <= DLGWINDOWEXTRA (=30). |
| LONG msgResult; /* Result of EndDialog() / Default button id */ |
| WNDPROC dlgProc; /* Dialog procedure */ |
| LONG userInfo; /* User information (for DWL_USER) */ |
| HWND hwndFocus; /* Current control with focus */ |
| HFONT hUserFont; /* Dialog font */ |
| HMENU hMenu; /* Dialog menu */ |
| WORD xBaseUnit; /* Dialog units (depends on the font) */ |
| WORD fEnd; /* EndDialog() called for this dialog */ |
| /* Dialog template header */ |
| BYTE nbItems WINE_PACKED; |
| /* Dialog control header */ |
| DLGTEMPLATEHEADER header; |