4 * Copyright 1993 Alexandre Julliard
12 #define DIALOG_CLASS_NAME "#32770" /* Integer atom */
15 /* Dialog info structure.
16 * This structure is stored into the window extra bytes (cbWndExtra).
17 * sizeof(DIALOGINFO) must be <= DLGWINDOWEXTRA (=30).
33 /* Dialog template header */
37 BYTE nbItems __attribute__ ((packed));
38 WORD x __attribute__ ((packed));
39 WORD y __attribute__ ((packed));
40 WORD cx __attribute__ ((packed));
41 WORD cy __attribute__ ((packed));
45 /* Dialog control header */
53 DWORD style __attribute__ ((packed));
60 DLGTEMPLATEHEADER * header;
61 unsigned char * menuName;