home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD v1.2 / amidev_cd_12.iso / inc&ad2.0 / includes / workbench / startup.i < prev    next >
Text File  |  1992-09-01  |  932b  |  43 lines

  1.     IFND    WORKBENCH_STARTUP_I
  2. WORKBENCH_STARTUP_I    EQU    1
  3. **
  4. **    $Filename: workbench/startup.i $
  5. **    $Release: 2.04 Includes, V37.4 $
  6. **    $Revision: 36.4 $
  7. **    $Date: 90/12/02 $
  8. **
  9. **    workbench startup definitions
  10. **
  11. **    (C) Copyright 1985-1991 Commodore-Amiga, Inc.
  12. **    All Rights Reserved
  13. **
  14.  
  15.     IFND    EXEC_TYPES_I
  16.     INCLUDE    "exec/types.i"
  17.     ENDC
  18.  
  19.     IFND    EXEC_PORTS_I
  20.     INCLUDE    "exec/ports.i"
  21.     ENDC
  22.  
  23.     IFND    LIBRARIES_DOS_I
  24.     INCLUDE    "libraries/dos.i"
  25.     ENDC
  26.  
  27.  STRUCTURE WBStartup,0
  28.     STRUCT    sm_Message,MN_SIZE    ; a standard message structure
  29.     APTR    sm_Process        ; the process descriptor for you
  30.     BPTR    sm_Segment        ; a descriptor for your code
  31.     LONG    sm_NumArgs        ; the number of elements in ArgList
  32.     APTR    sm_ToolWindow        ; description of window
  33.     APTR    sm_ArgList        ; the arguments themselves
  34.     LABEL    sm_SIZEOF
  35.  
  36.  STRUCTURE WBArg,0
  37.     BPTR    wa_Lock            ; a lock descriptor
  38.     APTR    wa_Name            ; a string relative to that lock
  39.     LABEL    wa_SIZEOF
  40.  
  41.     ENDC    ; WORKBENCH_STARTUP_I
  42.  
  43.