home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / cbm / nduk-v37.lha / V37 / include / dos / dosextens.i < prev    next >
Text File  |  1991-11-27  |  15KB  |  462 lines

  1.     IFND    DOS_DOSEXTENS_I
  2. DOS_DOSEXTENS_I    SET    1
  3. **
  4. **    $Filename: dos/dosextens.i $
  5. **    $Release: 2.04 Includes, V37.4 $
  6. **    $Revision: 36.37 $
  7. **    $Date: 91/11/08 $
  8. **
  9. **    DOS structures not needed for the casual AmigaDOS user
  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.      IFND  EXEC_TASKS_I
  19.      INCLUDE "exec/tasks.i"
  20.      ENDC
  21.      IFND  EXEC_PORTS_I
  22.      INCLUDE "exec/ports.i"
  23.      ENDC
  24.      IFND  EXEC_LIBRARIES_I
  25.      INCLUDE "exec/libraries.i"
  26.      ENDC
  27.      IFND  EXEC_SEMAPHORES_I
  28.      INCLUDE "exec/semaphores.i"
  29.      ENDC
  30.      IFND  DEVICES_TIMER_I
  31.      INCLUDE "devices/timer.i"
  32.      ENDC
  33.  
  34.      IFND  DOS_DOS_I
  35.      INCLUDE "dos/dos.i"
  36.      ENDC
  37.  
  38.  
  39. * All DOS processes have this STRUCTure
  40. * Create and DeviceProc returns pointer to the MsgPort in this STRUCTure
  41. * Process_addr = DeviceProc(..) - TC_SIZE
  42.  
  43.  STRUCTURE Process,0
  44.     STRUCT  pr_Task,TC_SIZE
  45.     STRUCT  pr_MsgPort,MP_SIZE    * This is BPTR address from DOS functions
  46.     WORD    pr_Pad        * Remaining variables on 4 byte boundaries
  47.     BPTR    pr_SegList        * Array of seg lists used by this process
  48.     LONG    pr_StackSize    * Size of process stack in bytes
  49.     APTR    pr_GlobVec        * Global vector for this process (BCPL)
  50.     LONG    pr_TaskNum        * CLI task number of zero if not a CLI
  51.     BPTR    pr_StackBase    * Ptr to high memory end of process stack
  52.     LONG    pr_Result2        * Value of secondary result from last call
  53.     BPTR    pr_CurrentDir    * Lock associated with current directory
  54.     BPTR    pr_CIS        * Current CLI Input Stream
  55.     BPTR    pr_COS        * Current CLI Output Stream
  56.     APTR    pr_ConsoleTask    * Console handler process for current window
  57.     APTR    pr_FileSystemTask    * File handler process for current drive
  58.     BPTR    pr_CLI        * pointer to CommandLineInterface
  59.     APTR    pr_ReturnAddr    * pointer to previous stack frame
  60.     APTR    pr_PktWait        * Function to be called when awaiting msg
  61.     APTR    pr_WindowPtr    * Window pointer for errors
  62.  
  63. * following definitions are new with 2.0
  64.     BPTR    pr_HomeDir        * Home directory of executing program
  65.     LONG    pr_Flags        * flags telling dos about process
  66.     APTR    pr_ExitCode        * code to call on exit of program or NULL
  67.     LONG    pr_ExitData        * Passed as an argument to pr_ExitCode
  68.     APTR    pr_Arguments    * Arguments passed to the process at start
  69.     STRUCT  pr_LocalVars,MLH_SIZE * Local environment variables
  70.     APTR    pr_ShellPrivate    * for the use of the current shell
  71.     BPTR    pr_CES        * Error stream - if NULL, use pr_COS
  72.    LABEL   pr_SIZEOF        * Process
  73.  
  74. *
  75. * Flags for pr_Flags
  76. *
  77.     BITDEF PR,FREESEGLIST,0
  78.     BITDEF PR,FREECURRDIR,1
  79.     BITDEF PR,FREECLI,2
  80.     BITDEF PR,CLOSEINPUT,3
  81.     BITDEF PR,CLOSEOUTPUT,4
  82.     BITDEF PR,FREEARGS,5
  83.  
  84. * The long word address (BPTR) of this STRUCTure is returned by
  85. * Open() and other routines that return a file.     You need only worry
  86. * about this STRUCT to do async io's via PutMsg() instead of
  87. * standard file system calls
  88.  
  89.  STRUCTURE FileHandle,0
  90.    APTR      fh_Link        * pointer to EXEC message
  91.    APTR      fh_Interactive    * Boolean; TRUE if interactive handle
  92.    APTR      fh_Type        * Port to do PutMsg() to
  93.    LONG      fh_Buf
  94.    LONG      fh_Pos
  95.    LONG      fh_End
  96.    LONG      fh_Funcs
  97. fh_Func1 EQU fh_Funcs
  98.    LONG      fh_Func2
  99.    LONG      fh_Func3
  100.    LONG      fh_Args
  101. fh_Arg1 EQU fh_Args
  102.    LONG      fh_Arg2
  103.    LABEL  fh_SIZEOF * FileHandle
  104.  
  105. * This is the extension to EXEC Messages used by DOS
  106.  STRUCTURE DosPacket,0
  107.    APTR      dp_Link      * pointer to EXEC message
  108.    APTR      dp_Port      * pointer to Reply port for the packet
  109. *              * Must be filled in each send.
  110.    LONG      dp_Type      * See ACTION_... below and
  111. *              * 'R' means Read, 'W' means Write to the file system
  112.    LONG      dp_Res1      * For file system calls this is the result
  113. *              * that would have been returned by the
  114. *              * function, e.g. Write ('W') returns actual
  115. *              * length written
  116.    LONG      dp_Res2      * For file system calls this is what would
  117. *              * have been returned by IoErr()
  118.    LONG      dp_Arg1
  119. *  Device packets common equivalents
  120. dp_Action  EQU    dp_Type
  121. dp_Status  EQU    dp_Res1
  122. dp_Status2 EQU    dp_Res2
  123. dp_BufAddr EQU    dp_Arg1
  124.    LONG      dp_Arg2
  125.    LONG      dp_Arg3
  126.    LONG      dp_Arg4
  127.    LONG      dp_Arg5
  128.    LONG      dp_Arg6
  129.    LONG      dp_Arg7
  130.    LABEL  dp_SIZEOF * DosPacket
  131.  
  132. * A Packet does not require the Message to before it in memory, but
  133. * for convenience it is useful to associate the two.
  134. * Also see the function init_std_pkt for initializing this STRUCTure
  135.  
  136.  STRUCTURE StandardPacket,0
  137.    STRUCT sp_Msg,MN_SIZE
  138.    STRUCT sp_Pkt,dp_SIZEOF
  139.    LABEL  sp_SIZEOF * StandardPacket
  140.  
  141.  
  142. * Packet types
  143. ACTION_NIL        EQU    0
  144. ACTION_STARTUP        EQU    0
  145. ACTION_GET_BLOCK    EQU    2    ;OBSOLETE
  146. ACTION_SET_MAP        EQU    4
  147. ACTION_DIE        EQU    5
  148. ACTION_EVENT        EQU    6
  149. ACTION_CURRENT_VOLUME    EQU    7
  150. ACTION_LOCATE_OBJECT    EQU    8
  151. ACTION_RENAME_DISK    EQU    9
  152. ACTION_WRITE        EQU    'W'
  153. ACTION_READ        EQU    'R'
  154. ACTION_FREE_LOCK    EQU    15
  155. ACTION_DELETE_OBJECT    EQU    16
  156. ACTION_RENAME_OBJECT    EQU    17
  157. ACTION_MORE_CACHE    EQU    18
  158. ACTION_COPY_DIR        EQU    19
  159. ACTION_WAIT_CHAR    EQU    20
  160. ACTION_SET_PROTECT    EQU    21
  161. ACTION_CREATE_DIR    EQU    22
  162. ACTION_EXAMINE_OBJECT    EQU    23
  163. ACTION_EXAMINE_NEXT    EQU    24
  164. ACTION_DISK_INFO    EQU    25
  165. ACTION_INFO        EQU    26
  166. ACTION_FLUSH        EQU    27
  167. ACTION_SET_COMMENT    EQU    28
  168. ACTION_PARENT        EQU    29
  169. ACTION_TIMER        EQU    30
  170. ACTION_INHIBIT        EQU    31
  171. ACTION_DISK_TYPE    EQU    32
  172. ACTION_DISK_CHANGE    EQU    33
  173. ACTION_SET_DATE        EQU    34
  174.  
  175. ACTION_SCREEN_MODE    EQU    994
  176.  
  177. ACTION_READ_RETURN    EQU    1001
  178. ACTION_WRITE_RETURN    EQU    1002
  179. ACTION_SEEK        EQU    1008
  180. ACTION_FINDUPDATE    EQU    1004
  181. ACTION_FINDINPUT    EQU    1005
  182. ACTION_FINDOUTPUT    EQU    1006
  183. ACTION_END        EQU    1007
  184. ACTION_SET_FILE_SIZE    EQU    1022    ; fast file system only
  185. ACTION_WRITE_PROTECT    EQU    1023    ; fast file system only
  186.  
  187. * new 2.0 packets
  188. ACTION_SAME_LOCK    EQU    40
  189. ACTION_CHANGE_SIGNAL    EQU    995
  190. ACTION_FORMAT        EQU    1020
  191. ACTION_MAKE_LINK    EQU    1021
  192. *
  193. *
  194. ACTION_READ_LINK    EQU    1024
  195. ACTION_FH_FROM_LOCK    EQU    1026
  196. ACTION_IS_FILESYSTEM    EQU    1027
  197. ACTION_CHANGE_MODE    EQU    1028
  198. *
  199. ACTION_COPY_DIR_FH    EQU    1030
  200. ACTION_PARENT_FH    EQU    1031
  201. ACTION_EXAMINE_ALL    EQU    1033
  202. ACTION_EXAMINE_FH    EQU    1034
  203.  
  204. ACTION_LOCK_RECORD    EQU    2008
  205. ACTION_FREE_RECORD    EQU    2009
  206.  
  207. ACTION_ADD_NOTIFY    EQU    4097
  208. ACTION_REMOVE_NOTIFY    EQU    4098
  209.  
  210. * Tell a file system to serialize the current volume. This is typically
  211. * done by changing the creation date of the disk. This packet does not take
  212. * any arguments.  NOTE: be prepared to handle failure of this packet for
  213. * V37 ROM filesystems.
  214.  
  215. ACTION_SERIALIZE_DISK    EQU    4200
  216.    
  217. * A structure for holding error messages - stored as array with error == 0
  218. * for the last entry.
  219.  
  220.  STRUCTURE ErrorString,0
  221.     APTR   estr_Nums
  222.     APTR   estr_Strings
  223.         LABEL  ErrorString_SIZEOF
  224.  
  225. * DOS library node structure.
  226. * This is the data at positive offsets from the library node.
  227. * Negative offsets from the node is the jump table to DOS functions
  228. * node = (STRUCT DosLibrary *) OpenLibrary( "dos.library" .. )
  229.  
  230.  STRUCTURE DosLibrary,0
  231.     STRUCT  dl_lib,LIB_SIZE
  232.     APTR    dl_Root         * Pointer to RootNode, described below
  233.     APTR    dl_GV         * Pointer to BCPL global vector
  234.     LONG    dl_A2         * BCPL standard register values
  235.     LONG    dl_A5
  236.     LONG    dl_A6
  237.     APTR    dl_Errors         * PRIVATE pointer to array of error msgs
  238.     APTR    dl_TimeReq         * PRIVATE pointer to timer request 
  239.     APTR    dl_UtilityBase   * PRIVATE pointer to utility library base
  240.     APTR    dl_IntuitionBase * PRIVATE pointer to intuition library base
  241.     LABEL   dl_SIZEOF *     DosLibrary
  242.  
  243. *
  244.  
  245.  STRUCTURE RootNode,0
  246.     BPTR    rn_TaskArray       * [0] is max number of CLI's
  247. *                   * [1] is APTR to process id of CLI 1
  248. *                   * [n] is APTR to process id of CLI n
  249.     BPTR    rn_ConsoleSegment  * SegList for the CLI
  250.     STRUCT  rn_Time,ds_SIZEOF  * Current time
  251.     LONG    rn_RestartSeg      * SegList for the disk validator process
  252.     BPTR    rn_Info           * Pointer to the Info structure
  253.     BPTR    rn_FileHandlerSegment * code for file handler
  254.     STRUCT  rn_CliList,MLH_SIZE * new list of all CLI processes
  255. *                   * the first cpl_Array is also rn_TaskArray
  256.     APTR    rn_BootProc           * private! ptr to msgport of boot fs
  257.     BPTR    rn_ShellSegment    * seglist for Shell (for NewShell)
  258.     LONG    rn_Flags           * dos flags
  259.     LABEL   rn_SIZEOF * RootNode
  260.  
  261.  BITDEF    RN,WILDSTAR,24
  262.  BITDEF RN,PRIVATE1,1
  263.  
  264. * ONLY to be allocated by DOS!
  265.  STRUCTURE CliProcList,0
  266.     STRUCT  cpl_Node,MLN_SIZE
  267.     LONG    cpl_First           * number of first entry in array
  268.     APTR    cpl_Array           * pointer to array of process msgport pointers
  269. *                   * [0] is max number of CLI's in this entry (n)
  270. *                   * [1] is APTR to process id of CLI cpl_First
  271. *                   * [n] is APTR to process id of CLI cpl_First+n-1
  272.     LABEL   cpl_SIZEOF
  273.  
  274.  STRUCTURE DosInfo,0
  275.     BPTR    di_McName           * PRIVATE: system resident module list
  276. di_ResList EQU di_McName
  277.     BPTR    di_DevInfo           * Device List
  278.     BPTR    di_Devices           * Currently zero
  279.     BPTR    di_Handlers           * Currently zero
  280.     APTR    di_NetHand           * Network handler processid currently zero
  281.     STRUCT  di_DevLock,SS_SIZE    * do NOT access directly!
  282.     STRUCT  di_EntryLock,SS_SIZE  * do NOT access directly!
  283.     STRUCT  di_DeleteLock,SS_SIZE * do NOT access directly!
  284.     LABEL   di_SIZEOF * DosInfo
  285.  
  286. * structure for the Dos resident list.  Do NOT allocate these, use
  287. * AddSegment(), and heed the warnings in the autodocs!
  288.  
  289.  STRUCTURE Segment,0
  290.     BPTR seg_Next
  291.     LONG seg_UC
  292.     BPTR seg_Seg
  293.     STRUCT seg_Name,4    ; Actually the first 4 chars of BSTR name
  294.     LABEL seg_SIZEOF
  295.  
  296. CMD_SYSTEM    EQU    -1
  297. CMD_INTERNAL    EQU    -2
  298. CMD_DISABLED    EQU    -999
  299.  
  300.  
  301. * DOS Processes started from the CLI via RUN or NEWCLI have this additional
  302. * set to data associated with them
  303.  
  304.  STRUCTURE CommandLineInterface,0
  305.     LONG   cli_Result2           * Value of IoErr from last command
  306.     BSTR   cli_SetName           * Name of current directory
  307.     BPTR   cli_CommandDir      * Head of the path locklist
  308.     LONG   cli_ReturnCode      * Return code from last command
  309.     BSTR   cli_CommandName     * Name of current command
  310.     LONG   cli_FailLevel       * Fail level (set by FAILAT)
  311.     BSTR   cli_Prompt           * Current prompt (set by PROMPT)
  312.     BPTR   cli_StandardInput   * Default (terminal) CLI input
  313.     BPTR   cli_CurrentInput    * Current CLI input
  314.     BSTR   cli_CommandFile     * Name of EXECUTE command file
  315.     LONG   cli_Interactive     * Boolean True if prompts required
  316.     LONG   cli_Background      * Boolean True if CLI created by RUN
  317.     BPTR   cli_CurrentOutput   * Current CLI output
  318.     LONG   cli_DefaultStack    * Stack size to be obtained in long words
  319.     BPTR   cli_StandardOutput  * Default (terminal) CLI output
  320.     BPTR   cli_Module           * SegList of currently loaded command
  321.     LABEL  cli_SIZEOF           * CommandLineInterface
  322.  
  323. * This structure can take on different values depending on whether it is
  324. * a device, an assigned directory, or a volume.     Below is the structure
  325. * reflecting volumes only.  Following that is the structure representing
  326. * only devices. Following that is the unioned structure representing all
  327. * the values
  328.   
  329. * structure representing a volume 
  330.  
  331.  STRUCTURE DevList,0
  332.     BPTR    dl_Next            ; bptr to next device list
  333.     LONG    dl_Type            ; see DLT below
  334.     APTR    dl_Task            ; ptr to handler task
  335.     BPTR    dl_Lock            ; not for volumes
  336.     STRUCT    dl_VolumeDate,ds_SIZEOF ; creation date
  337.     BPTR    dl_LockList        ; outstanding locks
  338.     LONG    dl_DiskType        ; 'DOS', etc
  339.     LONG    dl_unused
  340.     BSTR    dl_Name            ; bptr to bcpl name
  341.     LABEL    DevList_SIZEOF
  342.  
  343. * device structure (same as the DeviceNode structure in filehandler.i
  344.  
  345.  STRUCTURE     DevInfo,0
  346.     BPTR    dvi_Next
  347.     LONG    dvi_Type
  348.     APTR    dvi_Task
  349.     BPTR    dvi_Lock
  350.     BSTR    dvi_Handler
  351.     LONG    dvi_Stacksize
  352.     LONG    dvi_Priority
  353.     LONG    dvi_Startup
  354.     BPTR    dvi_SegList
  355.     BPTR    dvi_GlobVec
  356.     BSTR    dvi_Name
  357.     LABEL   dvi_SIZEOF
  358.  
  359. * combined structure for devices, assigned directories, volumes 
  360.  
  361.  STRUCTURE DosList,0
  362.     BPTR     dol_Next         ; bptr to next device on lis
  363.     LONG     dol_Type         ; see DLT below
  364.     APTR     dol_Task         ; ptr to handler task
  365.     BPTR     dol_Lock
  366.  
  367.     STRUCT    dol_VolumeDate,0    ; creation date (UNION)
  368.     STRUCT    dol_AssignName,0    ; name for assign path (UNION)
  369.     BSTR    dol_Handler        ; file name to load if seglist is null
  370.     STRUCT    dol_List,0        ; List of directories assigned (UNION)
  371.     LONG    dol_StackSize        ; stacksize to use when starting process
  372.     LONG    dol_Priority        ; task priority when starting process
  373.  
  374.     STRUCT    dol_LockList,0        ; outstanding locks (UNION)
  375.     ULONG    dol_Startup        ; startup msg: FileSysStartupMsg
  376.                     ; for disks
  377.  
  378.     STRUCT    dol_DiskType,0        ; 'DOS', etc (UNION)
  379.     BPTR    dol_SegList        ; already loaded code for new task
  380.  
  381.     BPTR    dol_GlobVec        ; BCPL global vector
  382.  
  383.     BSTR    dol_Name        ; bptr to bcpl name
  384.     LABEL    DosList_SIZEOF
  385.  
  386.  
  387.  
  388. * definitions for dl_Type
  389. DLT_DEVICE    EQU    0
  390. DLT_DIRECTORY    EQU    1    ; assign
  391. DLT_VOLUME    EQU    2
  392. DLT_LATE    EQU    3    ; late-binding assign
  393. DLT_NONBINDING    EQU    4    ; non-binding assign (AssignPath)
  394. DLT_PRIVATE    EQU    -1    ; for internal use only
  395.  
  396. * structure return by GetDeviceProc()
  397.  STRUCTURE DevProc,0
  398.     APTR    dvp_Port    ; struct MsgPort *
  399.     BPTR    dvp_Lock
  400.     ULONG    dvp_Flags
  401.     APTR    dvp_DevNode    ; struct DosList * - DON'T TOUCH OR USE!
  402.     LABEL    dvp_SIZEOF
  403.  
  404. * definitions for dvp_Flags
  405.  BITDEF    DVP,UNLOCK,0
  406.  BITDEF    DVP,ASSIGN,1
  407.  
  408. * Flags to be passed to LockDosList(), etc
  409.  BITDEF LD,DEVICES,2
  410.  BITDEF LD,VOLUMES,3
  411.  BITDEF LD,ASSIGNS,4
  412.  BITDEF LD,ENTRY,5
  413.  BITDEF LD,DELETE,6
  414.  
  415. * You MUST specify one of LDF_READ or LDF_WRITE
  416.  BITDEF LD,READ,0
  417.  BITDEF LD,WRITE,1
  418.  
  419. * actually all but LDF_ENTRY (which is used for internal locking)
  420. LDF_ALL    EQU    (LDF_DEVICES!LDF_VOLUMES!LDF_ASSIGNS)
  421.  
  422. * a lock structure, as returned by Lock() or DupLock()
  423.  STRUCTURE FileLock,0
  424.     BPTR    fl_Link            ; bcpl pointer to next lock
  425.     LONG    fl_Key            ; disk block number
  426.     LONG    fl_Access        ; exclusive or shared
  427.     APTR    fl_Task            ; handler task's port
  428.     BPTR    fl_Volume        ; bptr to DLT_VOLUME DosList entry
  429.     LABEL    fl_SIZEOF
  430.  
  431. * error report types for ErrorReport()
  432. REPORT_STREAM    EQU    0    ; a stream 
  433. REPORT_TASK    EQU    1    ; a process - unused 
  434. REPORT_LOCK    EQU    2    ; a lock 
  435. REPORT_VOLUME    EQU    3    ; a volume node 
  436. REPORT_INSERT    EQU    4    ; please insert volume 
  437.  
  438. * Special error codes for ErrorReport()
  439. ABORT_DISK_ERROR    EQU    296    ; Read/write error 
  440. ABORT_BUSY        EQU    288    ; You MUST replace... 
  441.  
  442. * types for initial packets to shells from run/newcli/execute/system.
  443. * For shell-writers only
  444. RUN_EXECUTE        EQU    -1
  445. RUN_SYSTEM        EQU    -2
  446. RUN_SYSTEM_ASYNCH    EQU    -3
  447.  
  448. * Types for fib_DirEntryType.  NOTE that both USERDIR and ROOT are
  449. * directories, and that directory/file checks should use <0 and >=0.
  450. * This is not necessarily exhaustive!  Some handlers may use other
  451. * values as needed, though <0 and >=0 should remain as supported as
  452. * possible.
  453. ST_ROOT        EQU    1
  454. ST_USERDIR    EQU    2
  455. ST_SOFTLINK    EQU    3    ; looks like dir, but may point to a file!
  456. ST_LINKDIR    EQU    4    ; hard link to dir
  457. ST_FILE        EQU    -3    ; must be negative for FIB!
  458. ST_LINKFILE    EQU    -4    ; hard link to file
  459. ST_PIPEFILE    EQU    -5    ; for pipes that support ExamineFH
  460.  
  461.     ENDC    ; DOS_DOSEXTENS_I
  462.