Today i try run layeredStructOps and get empty window(no buttons and SysTreeView).
section '.rsrc' resource readable
WC_TREEVIEW equ "SysTreeView32"
btnY equ 480
btnSzX equ 36
directory RT_DIALOG, dialogs
resource dialogs, 0, LANG_NEUTRAL, MainWindow
;+TVS_CHECKBOXES
dialog MainWindow, 'MainDLG', 70, 10, 400, 400, WS_VISIBLE+WS_CAPTION+WS_SYSMENU
dialogitem WC_TREEVIEW, '', 1, 10, 10, 170*2, 108*4, WS_CHILD+WS_BORDER+TVS_LINESATROOT+TVS_SHOWSELALWAYS+TVS_HASLINES+TVS_EDITLABELS+TVS_HASBUTTONS
dialogitem 'button', 'getStruct', 2000, 10*8-3, btnY+32, btnSzX+4, 15, WS_VISIBLE
dialogitem 'button', 'delet sel', 2001, 10*4-10, btnY+17, btnSzX+8, 15, WS_VISIBLE
dialogitem 'button', 'renameSel', 2002, 10*8-3, btnY+17, btnSzX+4, 15, WS_VISIBLE
dialogitem 'button', 'insert', 2003, 3, btnY+17, btnSzX-9, 15, WS_VISIBLE
;combobox
dialogitem 'combobox', '', 200, 3, btnY-37, btnSzX*6-10, 12, WS_VISIBLE
;dialogitem 'combobox', '', 201, 3+210, btnY-37, btnSzX*4-7, 12, WS_VISIBLE ;rename element
dialogitem 'combobox', '', 201, 3+116, btnY+19, btnSzX*4-7, 12, WS_VISIBLE
dialogitem 'combobox', '', 202, 3+116, btnY+34, btnSzX*4-7, 12, WS_VISIBLE
;ops connection struct
dialogitem 'button', 'add opInt4', 20, 3, btnY-17, btnSzX, 15, WS_VISIBLE
dialogitem 'button', 'add opVc4', 30, 10*4, btnY-17, btnSzX, 15, WS_VISIBLE
dialogitem 'button', 'add ptrLb', 35, 10*8-3, btnY-17, btnSzX, 15, WS_VISIBLE
dialogitem 'button', 'add ptrFun', 36, 10*12-6, btnY-17, btnSzX+2, 15, WS_VISIBLE
;simple values
dialogitem 'button', 'add dd', 2, 3, btnY, btnSzX, 15, WS_VISIBLE
dialogitem 'button', 'add dw', 3, 10*4, btnY, btnSzX, 15, WS_VISIBLE
dialogitem 'button', 'add db', 4, 10*8-3, btnY, btnSzX, 15, WS_VISIBLE
dialogitem 'button', 'add string', 5, 10*12-3*2, btnY, btnSzX, 15, WS_VISIBLE
dialogitem 'button', 'add ptrv', 6, 10*16-3*3, btnY, btnSzX, 15, WS_VISIBLE
dialogitem 'button', 'add vec2', 7, 10*20-3*4, btnY, btnSzX, 15, WS_VISIBLE
dialogitem 'button', 'add vec3', 8, 10*24-3*5, btnY, btnSzX, 15, WS_VISIBLE
dialogitem 'button', 'add vec4', 9, 10*28-3*6, btnY, btnSzX, 15, WS_VISIBLE
dialogitem 'button', 'add fun', 10, 10*32-3*7, btnY, btnSzX, 15, WS_VISIBLE
dialogitem 'button', ' file to ptr', 19, 10*28-3*6, btnY+32, btnSzX+9, 15, WS_VISIBLE
dialogitem 'button', 'fix count', 300, 210, btnY-38, btnSzX+6, 15, WS_VISIBLE
;static size for string,array,ptrv
dialogitem 'static', 'size:', 7770, 273, btnY-35, btnSzX, 15, WS_VISIBLE
dialogitem 'combobox', '', 203, 289, btnY-37, btnSzX*2-11, 120, CBS_AUTOHSCROLL+CBS_DROPDOWN+WS_VSCROLL+WS_VISIBLE+CBS_HASSTRINGS
enddialog