home *** CD-ROM | disk | FTP | other *** search
/ Cracking 2 / Cracking II..iso / Tools / icedump 6.018 and nticedump 1.9 / inc / iceload.inc < prev    next >
Encoding:
Text File  |  2000-05-02  |  1.4 KB  |  56 lines

  1. %ifndef INCLUDED_ICELOAD_INC
  2. %define INCLUDED_ICELOAD_INC
  3.  
  4. STRUC PROCESSINFORMATION    
  5.  .hProcess        RESD 1    ;process handle
  6.  .hThread        RESD 1    ;thread handle
  7.  .dwProcessId        RESD 1  ;process id
  8.  .dwThreadId        RESD 1  ;thread id
  9. ENDSTRUC
  10.  
  11. STRUC STARTUPINFO        
  12.  .cb            RESD 1  ;structure size
  13.  .lpReserved        RESD 1  ;(reserved)
  14.  .lpDesktop        RESD 1  ;desktop name
  15.  .lpTitle        RESD 1  ;console window title
  16.  .dwX            RESD 1    ;window origin (column)
  17.  .dwY            RESD 1    ;window origin (row)
  18.  .dwXSize        RESD 1    ;window width
  19.  .dwYSize        RESD 1    ;window height
  20.  .dwXCountChars        RESD 1    ;screen buffer width
  21.  .dwYCountChars        RESD 1    ;screen buffer height
  22.  .dwFillAttribute    RESD 1    ;console window initialization
  23.  .dwFlags        RESD 1    ;structure member flags
  24.  .wShowWindow        RESW 1    ;ShowWindow() parameter
  25.  .cbReserved2        RESW 1    ;(reserved)
  26.  .lpReserved2        RESD 1    ;(reserved)
  27.  .hStdInput        RESD 1    ;standard input handle
  28.  .hStdOutput        RESD 1    ;standard output handle
  29.  .hStdError        RESD 1    ;standard error handle
  30. ENDSTRUC
  31.  
  32. ; DLG ID
  33. ILMAIN        EQU    100
  34. ILABOUT        EQU     101
  35. ICON_MAIN    EQU     102
  36. IDR_ACCELERATOR    EQU    103
  37.  
  38. ; Component ID
  39. IL_TOOLBAR    EQU    200
  40.  
  41. ; Button CMD
  42. IL_OPEN      EQU    1000
  43. IL_RUN        EQU    1001
  44. IL_ABOUT    EQU    1002
  45. IL_EXIT        EQU    1003
  46. IL_LOAD_EXP    EQU    1004
  47. IL_SAVE_SIHIST    EQU    1005
  48.  
  49. ; Sub Component
  50. IL_STATUS    EQU    4000
  51. IL_RELOC    EQU    4001
  52. IL_RELOCBASE    EQU    4002
  53. IDBOK        EQU    4003
  54. IL_ARGUMENTS    EQU    4004
  55. IL_CKB_ARGS    EQU    4005
  56. %endif