home *** CD-ROM | disk | FTP | other *** search
- %ifndef INCLUDED_ICELOAD_INC
- %define INCLUDED_ICELOAD_INC
-
- STRUC PROCESSINFORMATION
- .hProcess RESD 1 ;process handle
- .hThread RESD 1 ;thread handle
- .dwProcessId RESD 1 ;process id
- .dwThreadId RESD 1 ;thread id
- ENDSTRUC
-
- STRUC STARTUPINFO
- .cb RESD 1 ;structure size
- .lpReserved RESD 1 ;(reserved)
- .lpDesktop RESD 1 ;desktop name
- .lpTitle RESD 1 ;console window title
- .dwX RESD 1 ;window origin (column)
- .dwY RESD 1 ;window origin (row)
- .dwXSize RESD 1 ;window width
- .dwYSize RESD 1 ;window height
- .dwXCountChars RESD 1 ;screen buffer width
- .dwYCountChars RESD 1 ;screen buffer height
- .dwFillAttribute RESD 1 ;console window initialization
- .dwFlags RESD 1 ;structure member flags
- .wShowWindow RESW 1 ;ShowWindow() parameter
- .cbReserved2 RESW 1 ;(reserved)
- .lpReserved2 RESD 1 ;(reserved)
- .hStdInput RESD 1 ;standard input handle
- .hStdOutput RESD 1 ;standard output handle
- .hStdError RESD 1 ;standard error handle
- ENDSTRUC
-
- ; DLG ID
- ILMAIN EQU 100
- ILABOUT EQU 101
- ICON_MAIN EQU 102
- IDR_ACCELERATOR EQU 103
-
- ; Component ID
- IL_TOOLBAR EQU 200
-
- ; Button CMD
- IL_OPEN EQU 1000
- IL_RUN EQU 1001
- IL_ABOUT EQU 1002
- IL_EXIT EQU 1003
- IL_LOAD_EXP EQU 1004
- IL_SAVE_SIHIST EQU 1005
-
- ; Sub Component
- IL_STATUS EQU 4000
- IL_RELOC EQU 4001
- IL_RELOCBASE EQU 4002
- IDBOK EQU 4003
- IL_ARGUMENTS EQU 4004
- IL_CKB_ARGS EQU 4005
- %endif