home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR3 / INTER38B.ZIP / INTERRUP.E < prev    next >
Text File  |  1993-12-05  |  288KB  |  7,739 lines

  1. Interrupt List, part 5 of 10
  2. This compilation is Copyright (c) 1989,1990,1991,1992,1993 Ralf Brown
  3. --------D-2180-------------------------------
  4. INT 21 - European MS-DOS 4.0 - "AEXEC" - EXECUTE PROGRAM IN BACKGROUND
  5.     AH = 80h
  6.     CX = mode
  7.         0000h place child in zombie mode on exit to preserve exit code
  8.         0001h discard child process and exit code on termination
  9.     DS:DX -> ASCIZ full program name
  10.     ES:BX -> parameter block (as for AX=4B00h)
  11. Return: CF clear if successful
  12.         AX = Command Subgroup ID (CSID)
  13.     CF set on error
  14.         AX = error code (see AH=59h)
  15. Program: European MS-DOS 4.0 was written for Siemens in Germany and then used
  16.       by several other European OEMs; its release falls between mainstream
  17.       versions 3.2 and 3.3
  18. Desc:    asynchronously execute a program, creating a new process for it
  19. Notes:    this function is called by the DETACH command
  20.     there is a system-wide limit of 32 processes
  21.     the CSID is used to identify all processes that have been spawned by
  22.       a given process, whether directly or indirectly
  23.     programs to be run in the background must use the new executable format
  24.       (see AH=4Bh)
  25.     background processes may only perform asynchronous (background) EXECs,
  26.       either this function or AX=4B04h
  27.     background processes may execute INT 11, INT 12, INT 21, INT 2A, and
  28.       INT 2F at any time; they may execute INT 10 and INT 16 only while
  29.       they have opened a popup screen via INT 2F/AX=1401h; no other
  30.       interrupts may be executed from the background
  31.     background processes may not use drive B: or overlay their code
  32.       segments
  33.     see AX=8700h for an installation check
  34.     the "NE" new executable format made its first appearance in European
  35.       MS-DOS 4.0
  36. SeeAlso: AH=4Bh,AH=87h,INT 2F/AX=1400h"POPUP"
  37. ----------218080-----------------------------
  38. INT 21 - PCW Weather Card interface - UNINSTALL PCW.COM AND FREE MEMORY
  39.     AX = 8080h
  40. Return: ???
  41. SeeAlso: AX=7070h/BX=7070h
  42. --------D-2181-------------------------------
  43. INT 21 - European MS-DOS 4.0 - "FREEZE" - STOP A PROCESS
  44.     AH = 81h
  45.     BX = flag (00h freeze command subtree, 01h only specified process)
  46.     CX = Process ID of head of command subtree
  47. Return: CF clear if successful
  48.     CF set on error
  49.         AX = error code (no such process)
  50. Desc:    temporarily suspend a process or a process and all of its children
  51. Note:    if BX=0001h, this call will not return until the process is actually
  52.       frozen, which may not be until after it unblocks from an I/O
  53.       operation
  54. SeeAlso: AH=82h,AH=89h,AX=8E00h,INT 15/AX=101Dh
  55. --------D-2182-------------------------------
  56. INT 21 - European MS-DOS 4.0 - "RESUME" - RESTART A PROCESS
  57.     AH = 82h
  58.     BX = flag (00h resume command subtree, 01h only specified process)
  59.     CX = Process ID of head of command subtree
  60. Return: CF clear if successful
  61.     CF set on error
  62.         AX = error code (no such process)
  63. Desc:    restart a previously-suspended process or a process and all of its
  64.       children
  65. SeeAlso: AH=81h,INT 15/AX=101Eh
  66. --------D-2183-------------------------------
  67. INT 21 - European MS-DOS 4.0 - "PARTITION" - GET/SET FOREGROUND PARTITION SIZE
  68.     AH = 83h
  69.     AL = function
  70.         00h get size
  71.         01h set new size
  72.         BX = new size in paragraphs
  73. Return: CF clear if successful
  74.         BX = current size (function 00h) or old size (function 01h)
  75.     CF set on error
  76.         AX = error code (01h,07h,0Dh)(see AH=59h)
  77. Desc:    specify or determine how much memory may be allocated by the foreground
  78.       process
  79. Note:    if the partition size is set to 0000h, no partition management is done
  80.       and all memory allocation is compatible with DOS 3.2.
  81.     the partition size can be changed regardless of what use is being made
  82.       of the changed memory; subsequent allocations will follow the
  83.       partition rules (foreground processes may allocate only foreground
  84.       memory; background processes allocate background memory first, then
  85.       foreground memory)
  86. SeeAlso: AH=48h,AH=4Ah
  87. --------v-2183-------------------------------
  88. INT 21 - VIRUS - "SVC" - INSTALLATION CHECK
  89.     AH = 83h
  90. Return: DX = 1990h if resident
  91. SeeAlso: AH=76h,AH=84h"VIRUS"
  92. --------v-2184-------------------------------
  93. INT 21 - VIRUS - "SVC 5.0" or "SVC 6.0" - INSTALLATION CHECK
  94.     AH = 84h
  95. Return: DX = 1990h if resident
  96.         BH = version number (major in high nybble, minor in low)
  97. SeeAlso: AH=83h"VIRUS",AH=89h"VIRUS"
  98. --------D-218400-----------------------------
  99. INT 21 - European MS-DOS 4.0 - "CREATMEM" - CREATE A SHARED MEMORY AREA
  100.     AX = 8400h
  101.     BX = size in bytes (0000h = 65536)
  102.     CX = flags
  103.         bit 6: zero-initialize segment
  104.     DS:DX -> ASCIZ name (must begin with "\SHAREMEM\")
  105. Return: CF clear if successful
  106.         AX = segment address of shared memory global object
  107.     CF set on error
  108.         AX = error code (06h,08h) (see AH=59h)
  109. Desc:    create an area of memory which may be accessed by multiple processes
  110. Notes:    shared memory objects are created as special files (thus the
  111.       restriction on the name)
  112.     on successful creation, the reference count is set to 1
  113. SeeAlso: AX=8401h,AX=8402h,INT 15/AX=DE19h
  114. --------D-218401-----------------------------
  115. INT 21 - European MS-DOS 4.0 - "GETMEM" - OBTAIN ACCESS TO SHARED MEMORY AREA
  116.     AX = 8401h
  117.     CX = flags
  118.         bit 7: writable segment (ignored by MS-DOS 4.0)
  119.     DS:DX -> ASCIZ name (must begin with "\SHAREMEM\")
  120. Return: CF clear if successful
  121.         AX = segment address of shared memory global object
  122.         CX = size in bytes
  123.     CF set on error
  124.         AX = error code (invalid name)
  125. Desc:    get address of a previously-created area of memory which may be
  126.       accessed by multiple processes
  127. Note:    this call increments the reference count for the shared memory area
  128. SeeAlso: AX=8400h,AX=8402h
  129. --------D-218402-----------------------------
  130. INT 21 - European MS-DOS 4.0 - "RELEASEMEM" - FREE SHARED MEMORY AREA
  131.     AX = 8402h
  132.     BX = handle (segment address of shared memory object)
  133. Return: CF clear if successful
  134.     CF set on error
  135.         AX = error code (no such name)
  136. Desc:    indicate that the specified area of shared memory will no longer be
  137.       used by the caller
  138. Note:    the reference count is decremented and the shared memory area is
  139.       deallocated if the new reference count is zero
  140. SeeAlso: AX=8400h,AX=8401h,INT 15/AX=DE19h
  141. --------D-2185-------------------------------
  142. INT 21 U - European MS-DOS 4.0 - ???
  143.     AH = 85h
  144.     ???
  145. Return: ???
  146. --------D-2186-------------------------------
  147. INT 21 - European MS-DOS 4.0 - "SETFILETABLE" - INSTALL NEW FILE HANDLE TABLE
  148.     AH = 86h
  149.     BX = total number of file handles in new table
  150. Return: CF clear if successful
  151.     CF set on error
  152.         AX = error code (06h,08h) (see AH=59h)
  153. Desc:    adjust the size of the per-process open file table, thus raising or
  154.       lowering the limit on the number of files the caller can open
  155.       simultaneously
  156. Notes:    any currently-open files are copied to the new table
  157.     if the table is increased beyond the default 20 handles, only the
  158.       first 20 will be inherited by child processes
  159.     error 06h is returned if the requested number of handles exceeds
  160.       system limits or would require closing currently-open files
  161. SeeAlso: AH=26h,AH=67h
  162. --------D-2187-------------------------------
  163. INT 21 - European MS-DOS 4.0 - "GETPID" - GET PROCESS IDENTIFIER
  164.     AH = 87h
  165. Return: AX = PID
  166.     BX = parent process's PID
  167.     CX = Command Subgroup ID (CSID)
  168. Program: European MS-DOS 4.0 was written for Siemens in Germany and then used
  169.       by several other European OEMs; its release falls between mainstream
  170.       versions 3.2 and 3.3
  171. Desc:    determine an identifier by which to access the calling process
  172. Notes:    called by MS C v5.1 getpid() function
  173.     this function apparently must return AX=0001h for INT 21/AH=80h to
  174.       succeed
  175.     one possible check for European MS-DOS 4.0 is to issue this call with
  176.       AL=00h and check whether AL is nonzero on return
  177. SeeAlso: AH=30h,AH=62h,AH=80h
  178. Index:    installation check;European MS-DOS 4.0
  179. --------D-2188-------------------------------
  180. INT 21 U - European MS-DOS 4.0 - ???
  181.     AH = 88h
  182.     ???
  183. Return: ???
  184. SeeAlso: AH=87h
  185. --------D-2189-------------------------------
  186. INT 21 - European MS-DOS 4.0 - SLEEP
  187.     AH = 89h
  188.     CX = time in milliseconds or 0000h to give up time slice
  189. Return: CF clear if successful
  190.         CX = 0000h
  191.     CF set on error
  192.         AX = error code (interrupted system call)
  193.         CX = sleep time remaining
  194. Desc:    suspend the calling process for the specified duration
  195. Notes:    the sleep interval is rounded up to the next higher increment of the
  196.       scheduler clock, and may be extended further if other processes are
  197.       running
  198.     this call may be interrupted by signals (see AH=8Dh)
  199.     reportedly called by Microsoft C 4.0 startup code
  200.     background processes have higher priority than the foreground process,
  201.       and should thus periodically yield the CPU
  202. SeeAlso: AH=81h,INT 15/AX=1000h,INT 2F/AX=1680h,INT 7A/BX=000Ah
  203. --------v-2189-------------------------------
  204. INT 21 - VIRUS - "Vriest" - INSTALLATION CHECK
  205.     AH = 89h
  206. Return: AX = 0123h if resident
  207. SeeAlso: AH=84h"VIRUS",AH=90h"VIRUS"
  208. --------D-218A-------------------------------
  209. INT 21 - European MS-DOS 4.0 - "CWAIT" - WAIT FOR CHILD TO TERMINATE
  210.     AH = 8Ah
  211.     BL = range (00h command subtree, 01h any child)
  212.     BH = suspend flag
  213.         00h suspend if children exist but none are dead
  214.         01h return if no dead children
  215.     CX = Process ID of head of command subtree
  216. Return: CF clear if successful
  217.         AH = termination type
  218.         00h normal termination
  219.         01h aborted by Control-C
  220.         02h aborted by I/O error
  221.         03h terminate and stay resident
  222.         04h aborted by signal
  223.         05h aborted by program error
  224.         AL = return code from child or aborting signal
  225.         BX = PID of child (0000h if no dead children)
  226.     CF set on error
  227.         AX = error code (no child,interrupted system call)
  228. Desc:    get return code from an asynchronously-executed child program,
  229.       optionally waiting if no return code is available
  230. SeeAlso: AH=4Bh,AH=4Dh,AH=80h,AH=8Dh
  231. --------D-218B-------------------------------
  232. INT 21 U - European MS-DOS 4.0 - ???
  233.     AH = 8Bh
  234.     ???
  235. Return: ???
  236. SeeAlso: AH=87h
  237. --------D-218C-------------------------------
  238. INT 21 - European MS-DOS 4.0 - SET SIGNAL HANDLER
  239.     AH = 8Ch
  240.     AL = signal number (see below)
  241.     BL = action (see below)
  242.     DS:DX -> signal handler
  243. Return: CF clear if successful
  244.         AL = previous action
  245.         ES:BX -> previous signal handler
  246.     CF set on error
  247.         AX = error code (01h,invalid SigNumber or Action) (see AH=59h)
  248. Desc:    set the routine which will be invoked on a number of exceptional
  249.       conditions
  250. Note:    all signals will be sent to the most recently installed handler
  251. SeeAlso: AH=8Dh
  252.  
  253. Values for signal number:
  254.  01h    SIGINTR        Control-C or user defined interrupt key
  255.  08h    SIGTERM        program termination
  256.  09h    SIGPIPE        broken pipe
  257.  0Dh    SIGUSER1    reserved for user definition
  258.  0Eh    SIGUSER2    reserved for user definition
  259.  
  260. Values for signal action:
  261.  00h    SIG_DFL        terminate process on receipt
  262.  01h    SIG_IGN        ignore signal
  263.  02h    SIG_GET        signal is accepted
  264.  03h    SIG_ERR        sender gets error
  265.  04h    SIG_ACK        acknowledge received signal and clear it, but don't
  266.             change current setting
  267.  
  268. Signal handler is called with:
  269.     AL = signal number
  270.     AH = signal argument
  271. Return: RETF, CF set: terminate process
  272.     RETF, CF clear, ZF set: abort any interrupted system call with an error
  273.     RETF, CF clear, ZF clear: restart any interrupted system call
  274.     IRET: restart any interrupted system call
  275. Note:    the signal handler may also perform a nonlocal GOTO by resetting the
  276.       stack pointer and jumping; before doing so, it should dismiss the
  277.       signal by calling this function with BL=04h
  278. --------D-218D-------------------------------
  279. INT 21 - European MS-DOS 4.0 - SEND SIGNAL
  280.     AH = 8Dh
  281.     AL = signal number (see AH=8Ch)
  282.     BH = signal argument
  283.     BL = action
  284.         00h send to entire command subtree
  285.         01h send only to specified process
  286.     DX = Process ID
  287. Return: CF clear if successful
  288.     CF set on error
  289.         AX = error code (01h,06h)(see AH=59h)
  290. Desc:    invoke the exceptional-condition handler for the specified process
  291. Note:    error 06h may be returned if one or more of the affected processes
  292.       have an error handler for the signal
  293. SeeAlso: AH=8Ch
  294. --------D-218E00BH00-------------------------
  295. INT 21 - European MS-DOS 4.0 - "SETPRI" - GET/SET PROCESS PRIORITY
  296.     AX = 8E00h
  297.     BH = 00h
  298.     BL = action
  299.         00h set priority for command subtree
  300.         01h set priority for specified process only
  301.     CX = Process ID
  302.     DH = 00h
  303.     DL = change in priority (00h to get priority)
  304. Return: CF clear if successful
  305.         DL = process priority
  306.         DH destroyed
  307.     CF set on error
  308.         AX = error code (01h,no such process)(see AH=59h)
  309. Desc:    specify or determine the execution priority of the specified process
  310.       or the process and all of its children
  311. SeeAlso: AH=81h
  312. --------D-218F-------------------------------
  313. INT 21 U - European MS-DOS 4.0 - ???
  314.     AH = 8Fh
  315.     ???
  316. Return: ???
  317. SeeAlso: AH=87h
  318. --------D-2190-------------------------------
  319. INT 21 U - European MS-DOS 4.0 - ???
  320.     AH = 90h
  321.     ???
  322. Return: ???
  323. SeeAlso: AH=87h
  324. --------v-2190-------------------------------
  325. INT 21 - VIRUS - "Carioca" - INSTALLATION CHECK
  326.     AH = 90h
  327. Return: AH = 01h if resident
  328. SeeAlso: AH=89h"VIRUS",AX=9753h"VIRUS"
  329. --------D-2191-------------------------------
  330. INT 21 U - European MS-DOS 4.0 - ???
  331.     AH = 91h
  332.     ???
  333. Return: ???
  334. SeeAlso: AH=87h
  335. --------D-2192-------------------------------
  336. INT 21 U - European MS-DOS 4.0 - ???
  337.     AH = 92h
  338.     ???
  339. Return: ???
  340. SeeAlso: AH=87h
  341. --------D-2193-------------------------------
  342. INT 21 - European MS-DOS 4.0 - "PIPE" - CREATE A NEW PIPE
  343.     AH = 93h
  344.     CX = size in bytes
  345. Return: CF clear if successful
  346.         AX = read handle
  347.         BX = write handle
  348.     CF set on error
  349.         AX = error code (08h) (see AH=59h)
  350. Desc:    create a communications channel which may be used for interprocess
  351.       data and command exchanges
  352. SeeAlso: AH=3Ch,AH=3Fh,AH=40h,AH=84h
  353. --------D-2194-------------------------------
  354. INT 21 U - European MS-DOS 4.0 - ???
  355.     AH = 94h
  356.     ???
  357. Return: ???
  358. SeeAlso: AH=87h
  359. --------D-2195-------------------------------
  360. INT 21 - European MS-DOS 4.0 - HARD ERROR PROCESSING
  361.     AH = 95h
  362.     AL = new state
  363.        00h enabled
  364.        01h disabled, automatically fail hard errors
  365. Return: AX = previous setting
  366. Desc:    specify whether hard (critical) errors should automatically fail the
  367.       system call or invoke an INT 24
  368. SeeAlso: INT 24
  369. --------D-2196-------------------------------
  370. INT 21 U - European MS-DOS 4.0 - ???
  371.     AH = 96h
  372.     ???
  373. Return: ???
  374. --------D-2197-------------------------------
  375. INT 21 U - European MS-DOS 4.0 - ???
  376.     AH = 97h
  377.     ???
  378. Return: ???
  379. --------v-219753-----------------------------
  380. INT 21 - VIRUS - "Nina" - INSTALLATION CHECK
  381.     AX = 9753h
  382. Return: never (executes original program) if virus resident
  383. SeeAlso: AH=90h"VIRUS",AX=A1D5h"VIRUS"
  384. --------D-2198-------------------------------
  385. INT 21 U - European MS-DOS 4.0 - ???
  386.     AH = 98h
  387.     ???
  388. Return: ???
  389. --------D-2199-------------------------------
  390. INT 21 u - European MS-DOS 4.0 - "PBLOCK" - BLOCK A PROCESS
  391.     AH = 99h
  392.     DS:BX -> memory location to block on
  393.     CX = timeout in milliseconds
  394.     DH = nonzero if interruptable
  395. Return: CF clear if awakened by event
  396.         AX = 0000h
  397.     CF set if unusual wakeup
  398.         ZF set if timeout, clear if interrupted by signal
  399.         AX = nonzero
  400. Desc:    suspend calling process until another process sends a "restart" signal
  401.       or a timeout occurs
  402. SeeAlso: AH=9Ah,INT 2F/AX=0802h
  403. --------D-219A-------------------------------
  404. INT 21 u - European MS-DOS 4.0 - "PRUN" - UNBLOCK A PROCESS
  405.     AH = 9Ah
  406.     DS:BX -> memory location processes may have blocked on
  407. Return: AX = number of processes awakened
  408.     ZF set if no processes awakened
  409. Program: European MS-DOS 4.0 was written for Siemens in Germany and then used
  410.       by several other European OEMs; its release falls between mainstream
  411.       versions 3.2 and 3.3
  412. Desc:    restart all processes waiting for the specified "restart" signal
  413. SeeAlso: AH=99h,INT 2F/AX=0802h
  414. --------I-21A0-------------------------------
  415. INT 21 - Attachmate Extra - GET 3270 DISPLAY STATE
  416.     AH = A0h
  417. Return: AL = display status
  418.         bit     7  : 0=windowed, 1=enlarged
  419.         bits 6-3: current screen profile number 0-9
  420.         bits 2-0: active window number
  421.             0=PC, 1-4=host B-E, 5-6=notepad F-G
  422.     BX = host window status (see below)
  423. Program: Attachmate Extra is a 3270 emulator by Attachmate Corporation
  424. SeeAlso: AH=A1h
  425.  
  426. Bitfields for host window status:
  427.  bit 15 reserved
  428.  bit 14 0=host E window installed, 1=not
  429.  bit 13 0=host E terminal on, 1=off
  430.  bit 12 0=host E window displayed, 1=not
  431.  bit 11 reserved
  432.  bit 10 0=host D window installed, 1=not
  433.  bit 9    0=host D terminal on, 1=off
  434.  bit 8    0=host D window displayed, 1=not
  435.  bit 7    reserved
  436.  bit 6    0=host C window installed, 1=not
  437.  bit 5    0=host C terminal on, 1=off
  438.  bit 4    0=host C window displayed, 1=not
  439.  bit 3    reserved
  440.  bit 2    0=host B window installed, 1=not
  441.  bit 1    0=host B terminal on, 1=off
  442.  bit 0    0=host B window displayed, 1=not
  443. --------I-21A1-------------------------------
  444. INT 21 - Attachmate Extra - SET 3270 DISPLAY STATE
  445.     AH = A1h
  446.     AL = set status byte
  447.         bit     7  : 0=windowed, 1=enlarged
  448.         bits 6-3: current screen profile number 0-9
  449.         bits 2-0: active window number
  450.             0=PC, 1-4=host B-E, 5-6=notepad F-G
  451. SeeAlso: AH=A0h,AH=A2h
  452. --------v-21A1D5-----------------------------
  453. INT 21 - VIRUS - "789"/"Filehider" - INSTALLATION CHECK
  454.     AX = A1D5h
  455. Return: AX = 900Dh if resident
  456. SeeAlso: AX=9753h,AX=A55Ah
  457. --------I-21A2-------------------------------
  458. INT 21 - Attachmate Extra - SET HOST WINDOW STATE
  459.     AH = A2h
  460.     AL = set status byte
  461.         bit     7  : 0=power off, 1=power on
  462.         bit     6  : 0=not installed, 1=installed
  463.         bits 5-3: reserved
  464.         bits 2-0: window number 1-4=host B-E
  465. SeeAlso: AH=A1h
  466. --------I-21A3-------------------------------
  467. INT 21 - Attachmate Extra - SEND KEYSTROKES TO HOST WINDOW
  468.     AH = A3h
  469.     AL = window number (1-4=host B-E)
  470.     CX = 0001h
  471.     DS:BX -> keystroke buffer
  472.     DL = zero if keystroke buffer contains host function code,
  473.          non-zero if keystroke buffer contains ASCII character
  474. Return: CX = zero if character sent, non-zero if not
  475.     BX incremented if CX=0
  476.  
  477. Values for host function code:
  478.     00h=reserved    10h=PF16    20h=Clear    30h=SysRq
  479.     01h=PF1        11h=PF17    21h=Print    31h=ErInp
  480.     02h=PF2        12h=PF18    22h=Left    32h=ErEof
  481.     03h=PF3        13h=PF19    23h=Right    33h=Ident
  482.     04h=PF4        14h=PF20    24h=Up        34h=Test
  483.     05h=PF5        15h=PF21    25h=Down    35h=Reset
  484.     06h=PF6        16h=PF22    26h=Home    36h=DevCncl
  485.     07h=PF7        17h=PF23    27h=Fast Left    37h=Dup
  486.     08h=PF8        18h=PF24    28h=Fast Right    38h=FldMark
  487.     09h=PF9        19h=Alt on    29h=Bksp    39h=Enter
  488.     0Ah=PF10    1Ah=Alt off    2Ah=Insert    3Ah=CrSel
  489.     0Bh=PF11    1Bh=Shift on    2Bh=Delete
  490.     0Ch=PF12    1Ch=Shift off    2Ch=Backtab
  491.     0Dh=PF13    1Dh=PA1        2Dh=Tab
  492.     0Eh=PF14    1Eh=PA2        2Eh=Newline
  493.     0Fh=PF15    1Fh=PA3        2Fh=Attn
  494. --------I-21A4-------------------------------
  495. INT 21 - Attachmate Extra - GET HOST WINDOW BUFFER ADDRESS
  496.     AH = A4h
  497.     AL = window number (1-4=host B-E)
  498. Return: DS:BX -> 3270 display buffer
  499. SeeAlso: AH=A5h,AH=B8h
  500. --------I-21A5-------------------------------
  501. INT 21 - Attachmate Extra - GET HOST WINDOW CURSOR POSITION
  502.     AH = A5h
  503.     AL = window number (1-4=host B-E)
  504. Return: BX = cursor position (80 * row + column, where 0:0 is upper left)
  505. Note:    if the host window is configured with the Extended Attribute (EAB)
  506.       feature, multiply the cursor position by 2 to obtain the byte offset
  507.       into the display buffer
  508. SeeAlso: AH=A4h
  509. --------v-21A55A-----------------------------
  510. INT 21 - VIRUS - "Eddie-2" - INSTALLATION CHECK
  511.     AX = A55Ah
  512. Return: AX = 5AA5h if resident
  513. SeeAlso: AX=A1D5h,AX=AA00h
  514. --------v-21AA00-----------------------------
  515. INT 21 - VIRUS - "Blinker" - INSTALLATION CHECK
  516.     AX = AA00h
  517. Return: AX = 00AAh if resident
  518. SeeAlso: AX=A55Ah,AX=AA03h
  519. --------v-21AA03-----------------------------
  520. INT 21 - VIRUS - "Backtime" - INSTALLATION CHECK
  521.     AX = AA03h
  522. Return: AX = 03AAh if resident
  523. SeeAlso: AX=AA00h,AH=ABh
  524. --------v-21AB-------------------------------
  525. INT 21 - VIRUS - "600" or "Voronezh"-family - INSTALLATION CHECK
  526.     AH = ABh
  527. Return: AX = 5555h if resident
  528. SeeAlso: AX=AA03h,AX=BBBBh"VIRUS"
  529. --------I-21AF-------------------------------
  530. INT 21 - Attachmate Extra - GET TRANSLATE TABLE ADDRESS
  531.     AH = AFh
  532. Return: DS:BX -> translate tables (see below)
  533.  
  534. Format of translate tables:
  535. Offset    Size    Description
  536.  00h 256 BYTEs    ASCII to 3270 buffer code translate table
  537. 100h 256 BYTEs    3270 buffer code to ASCII translate table
  538. 200h 256 BYTEs    3270 buffer code to EBCDIC translate table
  539. 300h 256 BYTEs    EBCDIC to 3270 buffer code translate table
  540. --------N-21B3-------------------------------
  541. INT 21 U - Novell NetWare - DOS Requester v1.03 - ???
  542.     AH = B3h
  543.     ???
  544. Return: ???
  545. --------N-21B4-------------------------------
  546. INT 21 U - Novell NetWare - "AttachHandle"
  547.     AH = B4h
  548.     DS:SI -> input buffer (see below)
  549. Return: AX = handle or return code
  550. Note:    this is an interface provided by NetWare to give DOS file access to
  551.       NetWare files on non-DOS systems such as Macintosh, OS/2, and Unix
  552.  
  553. Format of input buffer:
  554. Offset    Size    Description
  555.  00h    BYTE    "WorkFileServer"
  556.  01h    BYTE    access code
  557.  02h    DWORD    "OpenHandle"
  558.  06h    WORD    "OpenHandleCount"
  559.  08h    DWORD    "OpenFileSize"
  560. --------N-21B500-----------------------------
  561. INT 21 U - Novell NetWare - VNETWARE.386 API - GET INSTANCE DATA
  562.     AX = B500h
  563. Return: ES:BX -> data
  564.     CX = length
  565. SeeAlso: AX=B501h,AX=B502h
  566. --------N-21B501-----------------------------
  567. INT 21 U - Novell NetWare - VNETWARE.386 API - END VIRTUAL MACHINE
  568.     AX = B501h
  569. SeeAlso: AX=B500h,AX=B502h
  570. --------N-21B502-----------------------------
  571. INT 21 U - Novell NetWare - VNETWARE.386 API - START VIRTUAL MACHINE
  572.     AX = B502h
  573. SeeAlso: AX=B500h,AX=B501h
  574. --------N-21B5-------------------------------
  575. INT 21 - Novell NetWare shell 3.01 - TASK MODE CONTROL
  576.     AH = B5h
  577.     AL = subfunction
  578.         03h get task mode
  579.         Return: AH = 00h
  580.             AL = current task mode byte
  581.         04h get task mode pointer
  582.         Return: ES:BX -> task mode byte
  583. Notes:    the task mode byte specifies how task cleanup should be performed, but
  584.       is declared to be version-dependent
  585.     allows a program to disable the automatic cleanup for programs managing
  586.       task swapping, etc.
  587.  
  588. Values for task mode byte in version 3.01:
  589.  00h-03h reserved
  590.  04h     no task cleanup
  591. --------N-21B505-----------------------------
  592. INT 21 U - Novell NetWare - VNETWARE.386 API - SET VIRTUAL MACHINE ID
  593.     AX = B505h
  594.     ???
  595. Return: ???
  596. SeeAlso: AX=B502h,AX=B506h
  597. --------N-21B506-----------------------------
  598. INT 21 U - Novell NetWare - VNETWARE.386 API - GET VIRTUAL MACH SUPPORT LEVEL
  599.     AX = B506h
  600. Return: AX = ??? (0002h)
  601. SeeAlso: AX=B505h
  602. --------N-21B6-------------------------------
  603. INT 21 - Novell NetWare - FILE SERVICES - EXTENDED FILE ATTRIBUTES
  604.     AH = B6h
  605.     AL = subfunction
  606.         00h get extended file attributes
  607.         01h set extended file attributes
  608.         CL = extended file attributes (see below)
  609.     DS:DX -> ASCIZ pathname (max 255 bytes)
  610. Return: CF set on error
  611.         AL = error code
  612.         8Ch caller lacks privileges
  613.         FEh not permitted to search directory
  614.         FFh file not found
  615.     CF clear if successful
  616.         AL = 00h (success)
  617.         CL = current extended file attributes (see below)
  618. Note:    this function is supported by Advanced NetWare 2.1+
  619. SeeAlso: AX=4300h,AH=E3h/SF=0Fh
  620.  
  621. Bitfields for extended file attributes:
  622.  bits 2-0  search mode (executables only)
  623.     000 none (use shell's default search)
  624.     001 search on all opens without path
  625.     010 do not search
  626.     011 search on read-only opens without path
  627.     100 reserved
  628.     101 search on all opens
  629.     110 reserved
  630.     111 search on all read-only opens
  631.  bit 3    reserved
  632.  bit 4    transactions on file tracked
  633.  bit 5    file's FAT indexed
  634.  bit 6    read audit (to be implemented)
  635.  bit 7    write audit (to be implemented)
  636. --------N-21B7-------------------------------
  637. INT 21 U - Novell NetWare - "HoldFileModeSet" (obsolete)
  638.     AH = B7h
  639.     AL = new value for HoldFileFlag
  640. Return: AL = previous value of HoldFileFlag
  641. Note:    this function provided backward compatibility with a bug in early
  642.       DOS versions and CP/M, but is no longer used or supported
  643. --------I-21B8-------------------------------
  644. INT 21 - Attachmate Extra - DISABLE HOST BUFFER UPDATES
  645.     AH = B8h
  646.     AL = window number (1-4=host B-E)
  647.     DL = 01h
  648. Notes:    only valid in CUT mode
  649.     next AID keystroke (eg Enter) enables host buffer updates
  650. SeeAlso: AH=A4h
  651. --------N-21B800-----------------------------
  652. INT 21 - Novell NetWare - PRINT SERVICES - GET DEFAULT CAPTURE FLAGS
  653.     AX = B800h
  654.     CX = size of reply buffer (01h-3Fh)
  655.     ES:BX -> reply buffer for capture flags table (see below)
  656. Return: AL = status
  657.         00h successful
  658. Note:    this function is supported by Advanced NetWare 2.0+
  659. SeeAlso: AX=B801h,AX=B802h,AH=DFh/DL=00h,AH=DFh/DL=04h
  660.  
  661. Format of capture flags table:
  662. Offset    Size    Description
  663.  00h    BYTE    status (used internally, should be set to 00h)
  664.  01h    BYTE    print flags
  665.         bit 2: print capture file if interrupted by loss of connection
  666.         bit 3: no automatic form feed after print job
  667.         bit 6: printing control sequences interpreted by print service
  668.         bit 7: print banner page before capture file
  669.  02h    BYTE    tab size (01h-12h, default 08h)
  670.  03h    BYTE    printer number on server (00h-04h, default 00h)
  671.  04h    BYTE    number of copies to print (00h-FFh, default 01h)
  672.  05h    BYTE    form type required in printer (default 00h)
  673.  06h    BYTE    reserved
  674.  07h 13 BYTEs    text to be placed on banner page
  675.  14h    BYTE    reserved
  676.  15h    BYTE    default local printer (00h = LPT1)
  677.  16h    WORD    (big-endian) timeout in clock ticks for flushing capture file
  678.         on inactivity, or 0000h to disable timeout
  679.  18h    BYTE    flush capture file on LPT close if nonzero
  680.  19h    WORD    (big-endian) maximum lines per page
  681.  1Bh    WORD    (big-endian) maximum characters per line
  682.  1Dh 13 BYTEs    name of form required in printer
  683.  2Ah    BYTE    LPT capture flag
  684.         00h inactive, FFh LPT device is being captured
  685.  2Bh    BYTE    file capture flag
  686.         00h if no file specified, FFh if capturing to file
  687.  2Ch    BYTE    timing out (00h if no timeout in effect, FFh if timeout counter
  688.         running)
  689.  2Dh    DWORD    (big-endian) address of printer setup string
  690.  31h    DWORD    (big-endian) address of printer reset string
  691.  35h    BYTE    target connection ID
  692.  36h    BYTE    capture in progress if FFh
  693.  37h    BYTE    job queued for printing if FFh
  694.  38h    BYTE    print job valid if FFh
  695.  39h    DWORD    bindery object ID of print queue if previous byte FFh
  696.  3Dh    WORD    (big-endian) print job number (1-999)
  697. --------N-21B801-----------------------------
  698. INT 21 - Novell NetWare - PRINT SERVICES - SET DEFAULT CAPTURE FLAGS
  699.     AX = B801h
  700.     CX = size of buffer (01h-3Fh)
  701.     ES:BX -> buffer containing capture flags table (see below)
  702. Return: AL = status
  703.         00h successful
  704. Note:    this function is supported by Advanced NetWare 2.0+
  705. SeeAlso: AX=B800h,AX=B803h,AH=DFh/DL=00h,AH=DFh/DL=04h
  706. --------N-21B802-----------------------------
  707. INT 21 - Novell NetWare - PRINT SERVICES - GET SPECIFIC CAPTURE FLAGS
  708.     AX = B802h
  709.     CX = size of reply buffer (01h-3Fh)
  710.     DH = LPT port (00h-02h)
  711.     ES:BX -> reply buffer for capture flags table (see AX=B800h)
  712. Return: AL = status
  713.         00h successful
  714. Note:    this function is supported by Advanced NetWare 2.1+
  715. SeeAlso: AX=B800h,AX=B803h,AH=DFh/DL=00h,AH=DFh/DL=04h
  716. --------N-21B803-----------------------------
  717. INT 21 - Novell NetWare - PRINT SERVICES - SET SPECIFIC CAPTURE FLAGS
  718.     AX = B803h
  719.     CX = size of buffer (01h-3Fh)
  720.     DH = LPT port (00h-02h)
  721.     ES:BX -> buffer containing capture flags table (see below)
  722. Return: AL = status
  723.         00h successful
  724. Note:    this function is supported by Advanced NetWare 2.1+
  725. SeeAlso: AX=B800h,AX=B803h,AH=DFh/DL=00h,AH=DFh/DL=04h
  726. --------N-21B804-----------------------------
  727. INT 21 - Novell NetWare - PRINT SERVICES - GET DEFAULT LOCAL PRINTER
  728.     AX = B804h
  729. Return: DH = default LPT port (00h-02h)
  730. Note:    this function is supported by Advanced NetWare 2.1+
  731. SeeAlso: AX=B800h,AX=B805h,AH=DFh/DL=00h
  732. --------N-21B805-----------------------------
  733. INT 21 - Novell NetWare - PRINT SERVICES - SET DEFAULT LOCAL PRINTER
  734.     AX = B805h
  735.     DH = new default LPT port (00h-02h)
  736. Return: AL = status
  737.         00h successful
  738. Note:    this function is supported by Advanced NetWare 2.1+
  739. SeeAlso: AX=B800h,AX=B804h,AH=DFh/DL=00h
  740. --------N-21B806-----------------------------
  741. INT 21 - Novell NetWare - PRINT SERVICES - SET CAPTURE PRINT QUEUE
  742.     AX = B806h
  743.     DH = LPT port (00h-02h)
  744.     BX:CX = print queue's object ID
  745. Return: AL = status
  746.         00h successful
  747.         FFh job already set
  748. Desc:    specify the print queue on which a print job is to be placed the next
  749.       time a capture is started on the given printer port
  750. Note:    this function is supported by Advanced NetWare 2.1+
  751. SeeAlso: AX=B801h,AX=B807h,AX=E009h
  752. --------N-21B807-----------------------------
  753. INT 21 - Novell NetWare - PRINT SERVICES - SET CAPTURE PRINT JOB
  754.     AX = B807h
  755.     DH = LPT port (00h-02h)
  756.     BX = job number (see AH=E3h/SF=68h)
  757.     SI:DI:CX = NetWare file handle (see AH=E3h/SF=68h)
  758. Return: AL = status
  759.         00h successful
  760.         FFh job already queued
  761. Desc:    specify the capture file and print job to be used for subsequent
  762.       output to the given printer port
  763. Note:    this function is supported by Advanced NetWare 2.1+
  764. SeeAlso: AX=B801h,AX=B806h,AX=E009h,AH=E3h/SF=68h
  765. --------N-21B808-----------------------------
  766. INT 21 - Novell NetWare - PRINT SERVICES - GET BANNER USER NAME
  767.     AX = B808h
  768.     ES:BX -> 12-byte buffer for user name
  769. Return: AL = status
  770.         00h successful
  771. Desc:    get the user name which is printed on the banner page
  772. Notes:    this function is supported by Advanced NetWare 2.1+
  773.     the default name is the login name of the user
  774. SeeAlso: AX=B809h
  775. --------N-21B809-----------------------------
  776. INT 21 - Novell NetWare - PRINT SERVICES - SET BANNER USER NAME
  777.     AX = B809h
  778.     ES:BX -> 12-byte buffer containing user name
  779. Return: AL = status
  780.         00h successful
  781. Desc:    specify the user name which is printed on the banner page
  782. Notes:    this function is supported by Advanced NetWare 2.1+
  783.     the default name is the login name of the user
  784. SeeAlso: AX=B808h
  785. --------N-21B9-------------------------------
  786. INT 21 U - Novell NetWare - "SpecialAttachableFunction"
  787.     AH = B9h
  788.     AL = FFh to hook this function
  789.         ES:BX -> function to invoke on AH=B9h when AL<>FFh
  790. Note:    this function is no longer used or supported by current versions of
  791.       NetWare
  792. --------N-21BA-------------------------------
  793. INT 21 U - Novell NetWare - "ReturnCommandComPointers"
  794.     AH = BAh
  795. Return: DX = environment segment
  796.     ES:DI -> COMMAND.COM drive
  797. Desc:    used to edit the COMSPEC and PATH variables in the master environment
  798.       when mapping network drives
  799. Note:    this function was documented in older Novell documents which are no
  800.       longer available
  801. --------N-21BB-------------------------------
  802. INT 21 - Novell NetWare - WORKSTATION - SET END OF JOB STATUS
  803.     AH = BBh
  804.     AL = new EOJ flag
  805.         00h disable EOJs
  806.         01h enable EOJs
  807. Return: AL = old EOJ flag
  808. Desc:    specify whether the network shell should automatically generate an
  809.       End of Job call when the root command processor regains control
  810. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  811.       Alloy NTNX
  812. SeeAlso: AH=19h,AH=D6h
  813. --------v-21BBBB-----------------------------
  814. INT 21 - VIRUS - "Hey You" - INSTALLATION CHECK
  815.     AX = BBBBh
  816. Return: AX = 6969h
  817. SeeAlso: AH=ABh"VIRUS",AH=BEh"VIRUS"
  818. --------N-21BC-------------------------------
  819. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOG PHYSICAL RECORD
  820.     AH = BCh
  821.     AL = flags
  822.         bit 0: lock as well as log record
  823.         bit 1: non-exclusive lock
  824.     BX = file handle
  825.     CX:DX = starting offset in file
  826.     SI:DI = length of region to lock
  827.     BP = timeout in timer ticks (1/18 sec)
  828.         0000h = don't wait if already locked
  829. Return: AL = status
  830.         00h successful
  831.         96h no dynamic memory for file
  832.         FEh timed out
  833.         FFh failed
  834. Desc:    add the specified physical record to the log table, optionally locking
  835.       it
  836. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  837.       Alloy NTNX
  838. SeeAlso: AH=5Ch,AH=BDh,AH=BEh,AH=BFh,AH=C2h,AH=D0h
  839. --------N-21BD-------------------------------
  840. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE PHYSICAL RECORD
  841.     AH = BDh
  842.     BX = file handle
  843.     CX:DX = starting offset in file
  844.     SI:DI = length of record
  845. Return: AL = status
  846.         00h successful
  847.         FFh record not locked
  848. Desc:    unlock the specified physical record but do not remove it from log
  849.       table
  850. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  851.       Alloy NTNX
  852. SeeAlso: AH=BCh,AH=BEh"NetWare",AH=C0h,AH=C3h,AH=D2h
  853. --------N-21BE-------------------------------
  854. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR PHYSICAL RECORD
  855.     AH = BEh
  856.     BX = file handle
  857.     CX:DX = starting offset within file
  858.     SI:DI = record length in bytes
  859. Return: AL = status
  860.         00h successful
  861.         FFh specified record not locked
  862. Desc:    unlock the physical record and remove it from the log table
  863. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  864.       Alloy NTNX
  865. SeeAlso: AH=5Ch,AH=BCh,AH=BDh,AH=C1h,AH=C4h,AH=D4h
  866. --------v-21BE-------------------------------
  867. INT 21 - VIRUS - "Datalock" - INSTALLATION CHECK
  868.     AH = BEh
  869. Return: AX = 1234h if resident
  870. SeeAlso: AX=BBBBh,AX=BE00h
  871. --------v-21BE00-----------------------------
  872. INT 21 - VIRUS - "USSR-1049" - INSTALLATION CHECK
  873.     AX = BE00h
  874.     CF set
  875. Return: CF clear if resident
  876. SeeAlso: AH=BEh"VIRUS",AH=C0h"VIRUS"
  877. --------N-21BF-------------------------------
  878. INT 21 O - Novell NetWare, Alloy NTNX - LOG/LOCK RECORD (FCB)
  879.     AH = BFh
  880.     AL = flags
  881.         bit 0: lock as well as log record
  882.         bit 1: non-exclusive lock
  883.     DS:DX -> opened FCB (see AH=0Fh)
  884.     BX:CX = offset
  885.     BP = lock timeout in timer ticks (1/18 sec) if AL nonzero
  886.     SI:DI = length
  887. Return: AL = error code (see AH=BCh)
  888. Note:    this function was added in NetWare 4.6, but was removed some time prior
  889.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  890.       documentation
  891. SeeAlso: AH=BCh,AH=C0h"NetWare",AH=C2h"NetWare"
  892. --------N-21C0-------------------------------
  893. INT 21 O - Novell NetWare, Alloy NTNX - RELEASE RECORD (FCB)
  894.     AH = C0h
  895.     DS:DX -> non-extended FCB (see AH=0Fh)
  896.     BX:CX = offset
  897. Return: AL = error code (see AH=BCh)
  898. Notes:    unlocks record but does not remove it from log table
  899.     this function was added in NetWare 4.6, but was removed some time prior
  900.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  901.       documentation
  902. SeeAlso: AH=BDh,AH=BFh,AH=C1h"NetWare",AH=C3h
  903. --------v-21C0-------------------------------
  904. INT 21 - VIRUS - "Slow"/"Zerotime", "Solano" - INSTALLATION CHECK
  905.     AH = C0h
  906. Return: AX = 0300h if "Slow"/"Zerotime" resident
  907.     AX = 1234h if "Solano" resident
  908. SeeAlso: AX=BE00h,AH=C1h"VIRUS",AX=C301h"VIRUS"
  909. --------N-21C1-------------------------------
  910. INT 21 O - Novell NetWare, Alloy NTNX - CLEAR RECORD (FCB)
  911.     AH = C1h
  912.     DS:DX -> opened FCB (see AH=0Fh)
  913.     BX:CX = offset
  914. Return: AL = error code (see AH=BCh)
  915. Note:    unlocks record and removes it from log table
  916.     this function was added in NetWare 4.6, but was removed some time prior
  917.       to Advanced NetWare, and is no longer listed in current Novell
  918.       documentation
  919. SeeAlso: AH=BEh,AH=C0h"NetWare",AH=C4h
  920. --------v-21C1-------------------------------
  921. INT 21 - VIRUS - "Solano" - ???
  922.     AH = C1h
  923.     ???
  924. Return: ???
  925. SeeAlso: AH=C0h"VIRUS"
  926. --------N-21C2-------------------------------
  927. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOCK PHYSICAL RECORD SET
  928.     AH = C2h
  929.     AL = flags
  930.         bit 1: non-exclusive lock
  931.     BP = lock timeout in timer ticks (1/18 sec) 0000h = no wait
  932. Return: AL = status
  933.         00h successful
  934.         FEh timed out
  935.         FFh failed
  936. Desc:    attempt to lock all physical records listed in the log table
  937. Notes:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  938.       Alloy NTNX
  939.     status FFh will be returned if one or more physical records have been
  940.       exclusively locked by another process
  941. SeeAlso: AH=BFh,AH=C3h,AH=D1h
  942. --------v-21C2-------------------------------
  943. INT 21 - VIRUS - "Scott's Valley" - ???
  944.     AH = C2h
  945.     ???
  946. Return: ???
  947. SeeAlso: AH=C0h"VIRUS"
  948. --------N-21C3-------------------------------
  949. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE PHYSICAL RECRD SET
  950.     AH = C3h
  951. Desc:    unlock all currently-locked physical records in the log table, but do
  952.       not remove them from the table
  953. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  954.       Alloy NTNX
  955. SeeAlso: AH=BDh,AH=C0h,AH=C2h"NetWare",AH=C4h,AH=D3h
  956. --------v-21C301DXF1F1-----------------------
  957. INT 21 - VIRUS - "905"/"Backfont" - INSTALLATION CHECK
  958.     AX = C301h
  959.     DX = F1F1h
  960. Return: DX = 0E0Eh if resident
  961. SeeAlso: AH=C0h"VIRUS",AX=C500h"VIRUS"
  962. --------N-21C4-------------------------------
  963. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR PHYSICAL RECORD SET
  964.     AH = C4h
  965. Desc:    unlock all physical records in the log table and remove them from the
  966.       log table
  967. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  968.       Alloy NTNX
  969. SeeAlso: AH=BEh,AH=C1h,AH=D5h
  970. --------N-21C500-----------------------------
  971. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - OPEN SEMAPHORE
  972.     AX = C500h
  973.     DS:DX -> semaphore name (counted string, max 127 bytes)
  974.     CL = initial value for semaphore
  975. Return: AL = status
  976.         00h successful
  977.         BL = number of processes having semaphore open
  978.         CX:DX = semaphore handle
  979.         FEh invalid name length
  980.         FFh invalid semaphore value
  981. Notes:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  982.       Alloy NTNX
  983.     the semaphore's value is incremented by AX=C503h and decremented by
  984.       AX=C502h
  985. SeeAlso: AX=C501h,AX=C502h,AX=C503h,AX=C504h
  986. --------v-21C500-----------------------------
  987. INT 21 - VIRUS - "Sverdlov" - INSTALLATION CHECK
  988.     AX = C500h
  989. Return: AX = 6731h if resident
  990. SeeAlso: AX=C301h"VIRUS",AH=C6h"VIRUS"
  991. --------N-21C501-----------------------------
  992. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - EXAMINE SEMAPHORE
  993.     AX = C501h
  994.     CX:DX = semaphore handle
  995. Return: AL = status
  996.         00h successful
  997.         CX = semaphore value (-127 to 127)
  998.         DL = count of processes which have the semaphore open
  999.         FFh invalid handle
  1000. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  1001.       Alloy NTNX
  1002. SeeAlso: AX=C500h"NetWare",AX=C502h,AX=C504h
  1003. --------N-21C502-----------------------------
  1004. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - WAIT ON SEMAPHORE
  1005.     AX = C502h
  1006.     CX:DX = semaphore handle
  1007.     BP = timeout limit in timer ticks (1/18 sec)
  1008.         0000h return immediately if semaphore already zero or negative
  1009. Return: AL = status
  1010.         00h successful
  1011.         FEh timeout
  1012.         FFh invalid handle
  1013. Desc:    decrement the semaphore's value, optionally waiting until its value
  1014.       becomes positive before decrementing
  1015. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  1016.       Alloy NTNX
  1017. SeeAlso: AX=C500h"NetWare",AX=C501h,AX=C503h
  1018. --------N-21C503-----------------------------
  1019. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - SIGNAL SEMAPHORE
  1020.     AX = C503h
  1021.     CX:DX = semaphore handle
  1022. Return: AL = status
  1023.         00h successful
  1024.         01h semaphore value overflowed
  1025.         FFh invalid handle
  1026. Desc:    increment the semaphore's value and signal the first process (if any)
  1027.       in the queue waiting on the semaphore
  1028. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  1029.       Alloy NTNX
  1030. SeeAlso: AX=C500h"NetWare",AX=C502h
  1031. --------N-21C504-----------------------------
  1032. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLOSE SEMAPHORE
  1033.     AX = C504h
  1034.     CX:DX = semaphore handle
  1035. Return: AL = status
  1036.         00h successful
  1037.         FFh invalid handle
  1038. Desc:    decrement the semaphore's open count, and delete the semaphore if the
  1039.       count reaches zero
  1040. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  1041.       Alloy NTNX
  1042. SeeAlso: AX=C500h"NetWare",AX=C501h
  1043. --------N-21C6-------------------------------
  1044. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - GET OR SET LOCK MODE
  1045.     AH = C6h
  1046.     AL = subfunction
  1047.         00h set old "compatibility" mode (default)
  1048.         01h set new extended locks mode
  1049.         02h get lock mode
  1050. Return: AL = current lock mode
  1051. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  1052.       Alloy NTNX
  1053.     the locking mode should be 01h for NetWare 4.61+ and Advanced
  1054.       NetWare 1.0+ locking calls, and 00h for all older calls
  1055. SeeAlso: AH=BCh,AH=C4h,AH=D0h
  1056. --------v-21C6-------------------------------
  1057. INT 21 - VIRUS - "Socha" - INSTALLATION CHECK
  1058.     AH = C6h
  1059. Return: AL = 55h if resident
  1060. SeeAlso: AX=C500h"VIRUS",AX=C603h
  1061. --------v-21C603-----------------------------
  1062. INT 21 - VIRUS - "Yankee" or "MLTI" - INSTALLATION CHECK
  1063.     AX = C603h
  1064.     CF set
  1065. Return: CF clear if resident
  1066. SeeAlso: AX=C500h"VIRUS",AX=C700h"VIRUS"
  1067. --------N-21C700-----------------------------
  1068. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - BEGIN TRANSACTION
  1069.     AX = C700h
  1070. Return: CF clear if successful
  1071.         AL = 00h
  1072.     CF set on error
  1073.         AL = error code
  1074.         96h out of memory
  1075.         FEh implicit transaction already active, converted to explicit
  1076.         FFh explicit transaction already active
  1077. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1078. SeeAlso: AX=C701h,AX=C702h,AX=C703h
  1079. --------v-21C700-----------------------------
  1080. INT 21 - VIRUS - "MH-757" - INSTALLATION CHECK
  1081.     AX = C700h
  1082. Return: AL = 07h if resident
  1083. SeeAlso: AX=C603h"VIRUS",AH=CBh"VIRUS"
  1084. --------N-21C701-----------------------------
  1085. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - END TRANSACTION
  1086.     AX = C701h
  1087. Return: AL = status
  1088.         00h successful
  1089.         CX:DX = transaction number
  1090.         FDh transaction tracking disabled
  1091.         FEh transaction ended records locked
  1092.         FFh no explicit transaction active
  1093.     CF clear except when AL=FFh
  1094. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1095. SeeAlso: AX=C700h"NetWare",AX=C703h
  1096. --------N-21C702-----------------------------
  1097. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - INSTALLATION CHECK
  1098.     AX = C702h
  1099. Return: AL = status
  1100.         00h not available
  1101.         01h available
  1102.         FDh available but disabled
  1103. Desc:    determine whether the default file server supports TTS
  1104. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1105. --------N-21C703-----------------------------
  1106. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - ABORT TRANSACTION
  1107.     AX = C703h
  1108. Return: CF clear if successful
  1109.         AL = 00h
  1110.     CF set on error
  1111.         AL = error code
  1112.         FDh transaction tracking disabled, no backout
  1113.         FEh transaction ended records locked
  1114.         FFh no explicit transaction active
  1115. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1116. SeeAlso: AX=C700h"NetWare",AX=C701h,AX=C704h
  1117. --------N-21C704-----------------------------
  1118. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - TRANSACTION STATUS
  1119.     AX = C704h
  1120.     CX:DX = transaction number (see AX=C701h)
  1121. Return: AL = status
  1122.         00h successful
  1123.         FFh not yet written to disk
  1124. Desc:    verify that a transaction has actually been written to disk
  1125. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1126.     transactions are written to disk in the order in which they are ended,
  1127.       but it may take as much as five seconds for the data to be written
  1128. SeeAlso: AX=C700h"NetWare",AX=C701h,AX=C703h
  1129. --------N-21C705-----------------------------
  1130. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - GET APPLICTN THRESHOLDS
  1131.     AX = C705h
  1132. Return: AL = status
  1133.         00h successful
  1134.     CL = maximum logical record locks (default 0)
  1135.     CH = maximum physical record locks (default 0)
  1136. Desc:    get the per-application limits on record locks allowed before an
  1137.       implicit transaction is begun
  1138. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1139.     if either limit is FFh, implicit transactions are disabled for the
  1140.       corresponding lock type
  1141. SeeAlso: AX=C706h,AX=C707h
  1142. --------N-21C706-----------------------------
  1143. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - SET APPLICTN THRESHOLDS
  1144.     AX = C706h
  1145.     CL = maximum logical record locks (default 0)
  1146.     CH = maximum physical record locks (default 0)
  1147. Return: AL = status
  1148.         00h successful
  1149. Desc:    specify the per-application limits on record locks allowed before an
  1150.       implicit transaction is begun
  1151. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1152.     if either limit is set to FFh, implicit transactions are disabled for
  1153.       the corresponding lock type
  1154. SeeAlso: AX=C705h,AX=C708h
  1155. --------N-21C707-----------------------------
  1156. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - GET WORKSTN THRESHOLDS
  1157.     AX = C707h
  1158. Return: AL = status
  1159.         00h successful
  1160.     CL = maximum logical record locks (default 0)
  1161.     CH = maximum physical record locks (default 0)
  1162. Desc:    get the per-workstation limits on record locks allowed before an
  1163.       implicit transaction is begun
  1164. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1165.     if either limit is FFh, implicit transactions are disabled for the
  1166.       corresponding lock type
  1167. SeeAlso: AX=C705h,AX=C708h
  1168. --------N-21C708-----------------------------
  1169. INT 21 - Novell NetWare - TRANSACTION TRACKING SYSTEM - SET WORKSTN THRESHOLDS
  1170.     AX = C708h
  1171.     CL = maximum logical record locks (default 0)
  1172.     CH = maximum physical record locks (default 0)
  1173. Return: AL = status
  1174.         00h successful
  1175. Desc:    specify the per-workstation limits on record locks allowed before an
  1176.       implicit transaction is begun
  1177. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1178.     if either limit is set to FFh, implicit transactions are disabled for
  1179.       the corresponding lock type
  1180. SeeAlso: AX=C706h,AX=C707h
  1181. --------N-21C8-------------------------------
  1182. INT 21 O - Novell NetWare - BEGIN LOGICAL FILE LOCKING
  1183.     AH = C8h
  1184.     if function C6h lock mode 00h:
  1185.         DL = mode
  1186.         00h no wait
  1187.         01h wait
  1188.     if function C6h lock mode 01h:
  1189.         BP = timeout in timer ticks (1/18 sec)
  1190. Return: AL = error code
  1191. Desc:    used to provide TTS support for applications which are not aware of
  1192.       Novell's Transaction Tracking System
  1193. Note:    this function was added in NetWare 4.0, but was removed some time prior
  1194.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  1195.       documentation
  1196. SeeAlso: AH=C9h
  1197. --------N-21C9-------------------------------
  1198. INT 21 O - Novell NetWare - END LOGICAL FILE LOCKING
  1199.     AH = C9h
  1200. Return: AL = error code
  1201. Desc:    used to provide TTS support for applications which are not aware of
  1202.       Novell's Transaction Tracking System
  1203. Note:    this function was added in NetWare 4.0, but was removed some time prior
  1204.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  1205.       documentation
  1206. SeeAlso: AH=C8h
  1207. --------N-21CA-------------------------------
  1208. INT 21 O - Novell NetWare, Alloy NTNX - LOG/LOCK PERSONAL FILE (FCB)
  1209.     AH = CAh
  1210.     DS:DX -> FCB (see AH=0Fh)
  1211.     if function C6h lock mode 01h:
  1212.         AL = log and lock flag
  1213.         00h log file only
  1214.         01h lock as well as log file
  1215.         BP = lock timeout in timer ticks (1/18 sec)
  1216. Return: AL = error code
  1217.         00h successful
  1218.         96h no dynamic memory for file
  1219.         FEh timeout
  1220.         FFh failed
  1221. Desc:    provides file locking support for FCBs
  1222. Note:    this function was added in NetWare 4.0, but was removed some time prior
  1223.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  1224.       documentation
  1225. SeeAlso: AH=CBh
  1226. --------v-21CA15-----------------------------
  1227. INT 21 - VIRUS - "Piter" - ???
  1228.     AX = CA15h
  1229.     ???
  1230. Return: ???
  1231. SeeAlso: AH=CCh"VIRUS"
  1232. --------N-21CB-------------------------------
  1233. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOCK FILE SET
  1234.     AH = CBh
  1235.     if function C6h lock mode 00h:
  1236.         DL = mode
  1237.         00h no wait
  1238.         01h wait
  1239.     if function C6h lock mode 01h:
  1240.         BP = lock timeout in timer ticks (1/18 sec) 0000h = no wait
  1241. Return: AL = status
  1242.         00h successful
  1243.         FEh timed out
  1244.         FFh failed
  1245. Desc:    attempt to lock all files listed in the log table
  1246. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1247.       Alloy NTNX
  1248.     status FFh will be returned if one or more of the files have already
  1249.       been exclusively locked by another process
  1250. SeeAlso: AH=CAh,AH=CDh,AH=D1h,AH=EBh
  1251. --------v-21CB-------------------------------
  1252. INT 21 - VIRUS - "Milous" - INSTALLATION CHECK
  1253.     AH = CBh
  1254. Return: AL = 07h if resident
  1255. SeeAlso: AX=C700h"VIRUS",AX=CB02h
  1256. --------v-21CB02-----------------------------
  1257. INT 21 - VIRUS - "Witcode" - INSTALLATION CHECK
  1258.     AX = CB02h
  1259. Return: AX = 02CBh if resident
  1260. SeeAlso: AH=CBh"VIRUS",AH=CCh"VIRUS"
  1261. --------N-21CC-------------------------------
  1262. INT 21 O - Novell NetWare, Alloy NTNX - RELEASE FILE (FCB)
  1263.     AH = CCh
  1264.     DS:DX -> FCB (see AH=0Fh)
  1265. Return: none
  1266. Desc:    unlocks file, but does not remove it from the log table or close it
  1267. Note:    this function was added in NetWare 4.0, but was removed some time prior
  1268.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  1269.       documentation
  1270. SeeAlso: AH=CAh,AH=CDh
  1271. --------v-21CC-------------------------------
  1272. INT 21 - VIRUS - "Westwood" - INSTALLATION CHECK
  1273.     AH = CCh
  1274. Return: AX = 0700h if resident
  1275. SeeAlso: AX=CB02h,AH=CDh"VIRUS",AX=D000h"VIRUS"
  1276. --------N-21CD-------------------------------
  1277. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE FILE SET
  1278.     AH = CDh
  1279. Return: none
  1280. Desc:    unlock all files listed in the log table, but don't remove them from
  1281.       the table
  1282. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1283.       Alloy NTNX
  1284. SeeAlso: AH=CBh,AH=CCh,AH=CFh,AH=D3h
  1285. --------v-21CD-------------------------------
  1286. INT 21 - VIRUS - "Westwood" - ???
  1287.     AH = CDh
  1288.     ???
  1289. Return: ???
  1290. SeeAlso: AH=CCh"VIRUS"
  1291. --------N-21CE-------------------------------
  1292. INT 21 O - Novell NetWare, Alloy NTNX - CLEAR FILE (FCB)
  1293.     AH = CEh
  1294.     DS:DX -> FCB (see AH=0Fh)
  1295. Return: AL = error code
  1296. Desc:    unlocks file and removes it from log table, then closes all opened and
  1297.       logged occurrences
  1298. Note:    this function was added in NetWare 4.0, but was removed some time prior
  1299.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  1300.       documentation
  1301. SeeAlso: AH=CAh,AH=CFh,AH=EDh"NetWare"
  1302. --------N-21CF-------------------------------
  1303. INT 21 - LANstep - ???
  1304.     AH = CFh
  1305.     ???
  1306. Return: ???
  1307. Program: LANstep is a redesign of the Waterloo Microsystems PORT network
  1308. --------N-21CF-------------------------------
  1309. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR FILE SET
  1310.     AH = CFh
  1311. Return: AL = 00h
  1312. Desc:    unlock and remove all files from log table
  1313. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1314.       Alloy NTNX
  1315. SeeAlso: AH=CAh,AH=CEh,AH=EBh"NetWare"
  1316. --------N-21D0-------------------------------
  1317. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOG LOGICAL RECORD
  1318.     AH = D0h
  1319.     DS:DX -> record string (counted string, max 99 data bytes)
  1320.     if function C6h lock mode 01h: (Novell, NTNX only)
  1321.         AL = flags
  1322.         bit 0: lock as well as log the record
  1323.         bit 1: non-exclusive lock
  1324.         BP = lock timeout in timer ticks (1/18 sec)
  1325. Return: AL = status
  1326.         00h successful
  1327.         96h no dynamic memory for file
  1328.         FEh timed out
  1329.         FFh unsuccessful
  1330. Desc:    add the specified logical record name to the log table, and optionally
  1331.       lock the record
  1332. Notes:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+,
  1333.       Banyan VINES, and Alloy NTNX
  1334.     locks on logical record names are advisory and may be ignored by other
  1335.       applications
  1336. SeeAlso: AH=BCh,AH=D1h,AH=D2h,AH=D4h,AH=EBh
  1337. --------v-21D000-----------------------------
  1338. INT 21 - VIRUS - "Fellowship" - INSTALLATION CHECK
  1339.     AX = D000h
  1340. Return: BX = 1234h if resident
  1341. SeeAlso: AH=CCh"VIRUS",AH=D5h"VIRUS",AX=D5AAh
  1342. --------N-21D1-------------------------------
  1343. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOCK LOGICAL RECORD SET
  1344.     AH = D1h
  1345.     AL = lock type (00h exclusive, 01h shareable)
  1346.     if function C6h lock mode 00h:
  1347.         DL = mode
  1348.         00h no wait
  1349.         01h wait
  1350.     if function C6h lock mode 01h: (Novell only)
  1351.        BP = lock timeout in timer ticks (1/18 sec) 0000h = no wait
  1352.         0000h no wait
  1353. Return: AL = status (see AH=CBh)
  1354. Desc:    attempt to lock all logical record names listed in the log table
  1355. Notes:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+,
  1356.       Banyan VINES, and Alloy NTNX
  1357.     status FFh will be returned if one or more logical records have been
  1358.       exclusively locked by another process
  1359.     locks on logical record names are advisory and may be ignored by other
  1360.       applications
  1361. SeeAlso: AH=C2h,AH=CBh,AH=D0h,AH=D3h,AH=D5h
  1362. --------N-21D2-------------------------------
  1363. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE LOGICAL RECORD
  1364.     AH = D2h
  1365.     DS:DX -> semaphore identifier (counted string up to 99 chars long)
  1366. Return: AL = status
  1367.         00h successful
  1368.         FFh no such record
  1369. Desc:    unlock the logical record name but do not remove it from the log table
  1370. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+,
  1371.       Banyan VINES, and Alloy NTNX
  1372.     locks on logical record names are advisory and may be ignored by other
  1373.       applications
  1374. SeeAlso: AH=BDh,AH=D0h,AH=D3h,AH=D4h
  1375. --------N-21D3-------------------------------
  1376. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE LOGICAL RECORD SET
  1377.     AH = D3h
  1378. Desc:    unlock all currently-locked logical record names in the log table, but
  1379.       do not remove them from the table
  1380. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+,
  1381.       Banyan VINES, and Alloy NTNX
  1382.     locks on logical record names are advisory and may be ignored by other
  1383.       applications
  1384. SeeAlso: AH=C3h,AH=CDh,AH=D1h,AH=D2h,AH=D5h
  1385. --------N-21D4-------------------------------
  1386. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR LOGICAL RECORD
  1387.     AH = D4h
  1388.     DS:DX -> logical record name (counted string up to 99 chars long)
  1389. Return: AL = status
  1390.         00h successful
  1391.         FFh no such record name
  1392. Desc:    unlock and remove the logical record name from the log table
  1393. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+,
  1394.       Banyan VINES, and Alloy NTNX
  1395.     locks on logical record names are advisory and may be ignored by other
  1396.       applications
  1397. SeeAlso: AH=BEh,AH=D0h,AH=D2h,AH=D5h
  1398. --------N-21D5-------------------------------
  1399. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR LOGICAL RECORD SET
  1400.     AH = D5h
  1401. Return: AL = error code (see AH=D4h)
  1402. Desc:    unlock and remove all logical record name from the log table
  1403. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+,
  1404.       Banyan VINES, and Alloy NTNX
  1405.     locks on logical record names are advisory and may be ignored by other
  1406.       applications
  1407. SeeAlso: AH=D1h,AH=D3h,AH=D4h
  1408. --------v-21D5-------------------------------
  1409. INT 21 - VIRUS - "Carfield" - ???
  1410.     AH = D5h
  1411.     ???
  1412. Return: ???
  1413. SeeAlso: AX=D5AAh,AH=F3h"Carfield"
  1414. --------v-21D5AA-----------------------------
  1415. INT 21 - VIRUS - "Diamond-A", "Diamond-B" - INSTALLATION CHECK
  1416.     AX = D5AAh
  1417. Return: AX = 2A55h if "Diamond-A" resident
  1418.     AX = 2A03h if "Diamond-B"-family virus resident
  1419. SeeAlso: AX=D000h,AH=D5h"VIRUS",AX=D5AAh/BP=DEAAh
  1420. --------v-21D5AABPDEAA-----------------------
  1421. INT 21 - VIRUS - "Dir" - INSTALLATION CHECK
  1422.     AX = D5AAh
  1423.     BP = DEAAh
  1424. Return: SI = 4321h if resident
  1425. SeeAlso: AX=D5AAh,AX=DADAh"VIRUS"
  1426. --------N-21D6-------------------------------
  1427. INT 21 - Novell NetWare - WORKSTATION - END OF JOB
  1428.     AH = D6h
  1429.     BX = job flag (0000h current job, FFFFh all processes on workstation)
  1430. Return: AL = error code
  1431. Desc:    unlocks and clears all locked or logged files and records held by the
  1432.       process(es), closes all files, resets error and lock modes, and
  1433.       releases all network resources
  1434. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1435.       Alloy NTNX
  1436. SeeAlso: AH=BBh,AH=D7h
  1437. --------N-21D7-------------------------------
  1438. INT 21 - Novell NetWare - CONNECTION SERVICES - SYSTEM LOGOUT
  1439.     AH = D7h
  1440. Return: AL = error code
  1441. Desc:    this function closes the caller's open files, logs it out from all
  1442.       file servers, detaches the workstation from all non-default file
  1443.       servers, and maps a drive to the default server's SYS:LOGIN directory
  1444. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1445.       Alloy NTNX
  1446. SeeAlso: AH=D6h,AH=E3h/SF=14h,AH=F1h
  1447. --------N-21D8-------------------------------
  1448. INT 21 - Novell NetWare, Banyan VINES - ALLOCATE RESOURCE
  1449.     AH = D8h
  1450.     DL = resource number
  1451. Return: AL = status
  1452.         00h successful
  1453.         FFh unsucessful
  1454. Note:    this function is no longer used or supported by NetWare, and is not
  1455.       documented in Novell documents
  1456. SeeAlso: AH=D9h
  1457. --------N-21D9-------------------------------
  1458. INT 21 - Novell NetWare, Banyan VINES - DEALLOCATE RESOURCE
  1459.     AH = D9h
  1460.     DL = resource number
  1461. Return: AL = status (see AH=D8h)
  1462. Note:    this function is no longer used or supported by NetWare, and is not
  1463.       documented in Novell documents
  1464. SeeAlso: AH=D8h
  1465. --------N-21DA-------------------------------
  1466. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET VOLUME INFO WITH NUMBER
  1467.     AH = DAh
  1468.     DL = volume number
  1469.     ES:DI -> reply buffer (see below)
  1470. Return: AL = 00h
  1471. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1472.     operator console rights are not required to make this call
  1473.     reported total blocks and total unused blocks include the Hot Fix
  1474.       Table; the NetWare shell's implementation of INT 21/AH=36h will
  1475.       report values larger than 268MB as 268MB.
  1476. SeeAlso: AH=36h,AH=E2h/SF=15h,AH=E3h/SF=E9h
  1477.  
  1478. Format of reply buffer:
  1479. Offset    Size    Description
  1480.  00h    WORD    sectors/block
  1481.  02h    WORD    total blocks on volume
  1482.  04h    WORD    unused blocks
  1483.  06h    WORD    total directory entries
  1484.  08h    WORD    unused directory entries
  1485.  0Ah 16 BYTEs    volume name, null padded
  1486.  1Ah    WORD    removable flag, 0000h = not removable
  1487. Note:    all words are big-endian
  1488. --------v-21DADA-----------------------------
  1489. INT 21 - VIRUS - "Gotcha" - INSTALLATION CHECK
  1490.     AX = DADAh
  1491. Return: AH = A5h
  1492. SeeAlso: AX=D5AAh,AX=DAFEh"VIRUS"
  1493. --------v-21DAFE-----------------------------
  1494. INT 21 - VIRUS - "Plovdiv 1.3" - INSTALLATION CHECK
  1495.     AX = DAFEh
  1496. Return: AX = 1234h if resident
  1497. SeeAlso: AX=DADAh,AH=DDh"VIRUS",AH=DEh"VIRUS"
  1498. --------N-21DB-------------------------------
  1499. INT 21 - Novell NetWare - WORKSTATION - GET NUMBER OF LOCAL DRIVES
  1500.     AH = DBh
  1501. Return: AL = number of local disks as set by LASTDRIVE in CONFIG.SYS
  1502. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1503.       Alloy NTNX
  1504. SeeAlso: AH=0Eh
  1505. --------N-21DC-------------------------------
  1506. INT 21 - Novell NetWare - CONNECTION SERVICES - GET CONNECTION NUMBER
  1507.     AH = DCh
  1508. Return: AL = logical connection number
  1509.         00h if NetWare not loaded or this machine is a non-dedicated server
  1510.     CX = station number in ASCII (CL = first digit)
  1511. Notes:    this function is supported by NetWare 4.0+, Banyan VINES, and Alloy
  1512.       NTNX
  1513.     station number only unique for those PCs connected to same semaphore
  1514.       service
  1515. --------d-21DC-------------------------------
  1516. INT 21 - PCMag PCMANAGE/DCOMPRES - TURN ON/OFF
  1517.     AH = DCh
  1518.     DX = state
  1519.         0000h turn on
  1520.         0001h turn off
  1521. SeeAlso: AX=FEDCh
  1522. --------N-21DD-------------------------------
  1523. INT 21 - Novell NetWare - WORKSTATION - SET NetWare ERROR MODE
  1524.     AH = DDh
  1525.     DL = error mode
  1526.         00h invoke INT 24 on critical I/O errors (default)
  1527.         01h return NetWare extended error code in AL
  1528.         02h return error code in AL, mapped to standard DOS error codes
  1529. Return: AL = previous error mode
  1530. Note:    this function is supported by Advanced NetWare 2.0+
  1531. SeeAlso: INT 24
  1532. --------v-21DD-------------------------------
  1533. INT 21 - VIRUS - "Jerusalem"-family - RELOCATE VIRUS???
  1534.     AH = DDh
  1535.     CX = number of bytes to copy
  1536.     DS:SI -> source of copy
  1537.     ES:DI -> destination of copy
  1538. Return: does not return normally; return address is caller's CS:0100h with
  1539.       AX = ???
  1540. SeeAlso: AH=E0h"VIRUS",AH=EEh"VIRUS"
  1541. --------v-21DE-------------------------------
  1542. INT 21 - VIRUS - "Durban" - INSTALLATION CHECK
  1543.     AH = DEh
  1544. Return: AH = DFh if resident
  1545. SeeAlso: AX=DAFEh,AX=DEDEh"VIRUS"
  1546. --------v-21DE-------------------------------
  1547. INT 21 - VIRUS - "April 1st EXE" - ???
  1548.     AH = DEh
  1549.     ???
  1550. Return: ???
  1551. --------N-21DE-------------------------------
  1552. INT 21 - Novell NetWare - MESSAGE SERVICES - SET BROADCAST MODE
  1553.     AH = DEh
  1554.     DL = broadcast mode
  1555.         00h receive server and workstation broadcasts (default)
  1556.         01h receive server broadcasts, discard user messages
  1557.         02h store server broadcasts for retrieval
  1558.         03h store all broadcasts for retrieval
  1559. Return: AL = new broadcast mode
  1560. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1561. --------N-21DE--DL04-------------------------
  1562. INT 21 - Novell NetWare - MESSAGE SERVICES - GET BROADCAST MODE
  1563.     AH = DEh
  1564.     DL = 04h
  1565. Return: AL = current broadcast mode
  1566.         00h receive server and workstation broadcasts (default)
  1567.         01h receive server broadcasts, discard user message
  1568.         02h store server broadcasts for retrieval
  1569.         03h store all broadcasts for retrieval
  1570. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1571. --------N-21DE-------------------------------
  1572. INT 21 - Novell NetWare - SHELL TIMER INTERRUPT CHECKS
  1573.     AH = DEh
  1574.     DL = function
  1575.         05h disable shell timer interrupt checks
  1576.         06h enable shell timer interrupt checks
  1577. Return: ???
  1578. Note:    this function was added in NetWare 4.0, but is not listed in current
  1579.       Novell documentation and is probably no longer supported
  1580. --------v-21DEDE-----------------------------
  1581. INT 21 - VIRUS - "Brothers" - INSTALLATION CHECK
  1582.     AX = DEDEh
  1583. Return: AH = 41h if resident
  1584. SeeAlso: AH=DEh"VIRUS",AH=E0h"VIRUS"
  1585. --------N-21DF--DL00-------------------------
  1586. INT 21 - Novell NetWare - PRINT SERVICES - START LPT CAPTURE
  1587.     AH = DFh
  1588.     DL = 00h
  1589. Return: AL = status
  1590.         00h successful
  1591. Desc:    this function redirects the default LPT to a capture file on the file
  1592.       server
  1593. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1594.       Alloy NTNX; under NTNX, it sends a print break (see INT 17/AH=84h)
  1595.     a print job is queued when the first character of output is captured
  1596. SeeAlso: AX=B800h,AX=B804h,AH=DFh/DL=01h,AH=DFh/DL=02h,AH=DFh/DL=03h
  1597. SeeAlso: AH=DFh/DL=04h,AX=F003h
  1598. --------N-21DF--DL01-------------------------
  1599. INT 21 - Novell NetWare - PRINT SERVICES - END LPT CAPTURE
  1600.     AH = DFh
  1601.     DL = 01h
  1602. Return: AL = status
  1603.         00h successful
  1604. Desc:    stop redirecting the default LPT, close the capture file, and release
  1605.       the job in the print queue for printing
  1606. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1607.       Alloy NTNX; under NTNX, it sends a print break (see INT 17/AH=84h)
  1608.     after this call, the default LPT defaults to local printing
  1609. SeeAlso: AH=DFh/DL=00h,AH=DFh/DL=02h,AH=DFh/DL=03h,AH=DFh/DL=05h
  1610. --------N-21DF--DL02-------------------------
  1611. INT 21 - Novell NetWare - PRINT SERVICES - CANCEL LPT CAPTURE
  1612.     AH = DFh
  1613.     DL = 02h
  1614. Return: AL = status
  1615.         00h successful
  1616. Desc:    this function ends the capture of the default LPT, removes the job from
  1617.       the print queue, and deletes the capture file unless it is a
  1618.       permanent capture file
  1619. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1620.       Alloy NTNX; under NTNX, it sends a print break (see INT 17/AH=84h)
  1621.     after this call, the default LPT defaults to local printing
  1622. SeeAlso: AH=DFh/DL=00h,AH=DFh/DL=06h
  1623. --------N-21DF--DL03-------------------------
  1624. INT 21 - Novell NetWare - PRINT SERVICES - FLUSH LPT CAPTURE
  1625.     AH = DFh
  1626.     DL = 03h
  1627. Return: AL = status
  1628.         00h successful
  1629. Desc:    this function closes the current capture file for the default LPT
  1630.       and starts printing it if it is not a permanent capture file
  1631. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1632.       Alloy NTNX; under NTNX, it sends a print break (see INT 17/AH=84h)
  1633.     if more data is sent to the LPT port after this call, a new capture
  1634.       file will be opeend
  1635. SeeAlso: AH=DFh/DL=00h,AH=DFh/DL=01h,AH=DFh/DL=02h,AH=DFh/DL=07h
  1636. --------N-21DF--DL04-------------------------
  1637. INT 21 - Novell NetWare - PRINT SERVICES - START SPECIFIC LPT CAPTURE
  1638.     AH = DFh
  1639.     DL = 04h
  1640.     DH = LPT port (00h-02h)
  1641. Return: AL = status
  1642.         00h successful
  1643. Desc:    this function redirects the specified LPT to a capture file on the file
  1644.       server
  1645. Notes:    this function is supported by Advanced NetWare 2.1+
  1646.     a print job is queued when the first character of output is captured
  1647. SeeAlso: AX=B800h,AH=DFh/DL=00h,AH=DFh/DL=05h,AH=DFh/DL=06h,AH=DFh/DL=07h
  1648. SeeAlso: AX=F003h
  1649. --------N-21DF--DL05-------------------------
  1650. INT 21 - Novell NetWare - PRINT SERVICES - END SPECIFIC LPT CAPTURE
  1651.     AH = DFh
  1652.     DL = 05h
  1653.     DH = LPT port (00h-02h)
  1654. Return: AL = status
  1655.         00h successful
  1656. Desc:    stop redirecting the specified LPT, close the capture file, and release
  1657.       the job in the print queue for printing
  1658. Notes:    this function is supported by Advanced NetWare 2.1+
  1659.     after this call, the specified LPT defaults to local printing
  1660. SeeAlso: AH=DFh/DL=01h,AH=DFh/DL=04h,AH=DFh/DL=06h,AH=DFh/DL=07h
  1661. --------N-21DF--DL06-------------------------
  1662. INT 21 - Novell NetWare - PRINT SERVICES - CANCEL SPECIFIC LPT CAPTURE
  1663.     AH = DFh
  1664.     DL = 06h
  1665.     DH = LPT port (00h-02h)
  1666. Return: AL = status
  1667.         00h successful
  1668. Desc:    this function ends the capture of the specified LPT, removes the job
  1669.       from the print queue, and deletes the capture file unless it is a
  1670.       permanent capture file
  1671. Notes:    this function is supported by Advanced NetWare 2.1+
  1672.     after this call, the specified LPT defaults to local printing
  1673. SeeAlso: AH=DFh/DL=02h,AH=DFh/DL=04h,AH=DFh/DL=05h,AH=DFh/DL=07h
  1674. --------N-21DF--DL07-------------------------
  1675. INT 21 - Novell NetWare - PRINT SERVICES - FLUSH SPECIFIC LPT CAPTURE
  1676.     AH = DFh
  1677.     DL = 07h
  1678.     DH = LPT port (00h-02h)
  1679. Return: AL = status
  1680.         00h successful
  1681. Desc:    this function closes the current capture file for the specified LPT
  1682.       and starts printing it if it is not a permanent capture file
  1683. Notes:    this function is supported by Advanced NetWare 2.1+
  1684.     if more data is sent to the LPT port after this call, a new capture
  1685.       file will be opeend
  1686. SeeAlso: AH=DFh/DL=03h,AH=DFh/DL=04h,AH=DFh/DL=05h,AH=DFh/DL=06h
  1687. --------T-21DF00DX534C-----------------------
  1688. INT 21 U - Software Carousel - INSTALLATION CHECK
  1689.     AX = DF00h
  1690.     DX = 534Ch ("SL")
  1691.     DI = 534Ch ("SL")
  1692. Return: AX = 00FFh if installed
  1693.         ???
  1694. Program: Software Carousel is a task switcher by SoftLogic Solutions, Inc.
  1695. --------T-21DF01-----------------------------
  1696. INT 21 - Software Carousel - SWITCH TO ANOTHER TASK
  1697.     AX = DF01h
  1698.     BL = task number (00h = next task)
  1699. Return: AL = status
  1700.         00h Carousel not running
  1701.         01h successful
  1702.         FFh unsucessful
  1703.         AH = error code (01h,02h) (see below)
  1704.  
  1705. Values for error code:
  1706.  00h    invalid subfunction in AL
  1707.  01h    invalid task number
  1708.  02h    tried to switch to task with no memory size
  1709.  03h    tried to kill program in partition with no program running
  1710.  04h    tried to change size of an active memory partition
  1711.  05h    invalid memory size
  1712.  06h    tried to send command to task with a pending previous command
  1713. --------T-21DF02-----------------------------
  1714. INT 21 - Software Carousel - KILL PROGRAM IN MEMORY PARTITION
  1715.     AX = DF02h
  1716.     BL = task number
  1717. Return: AL = status
  1718.         00h Carousel not running
  1719.         01h successful
  1720.         FFh unsucessful
  1721.         AH = error code (01h,03h) (see AX=DF01h)
  1722. --------T-21DF03-----------------------------
  1723. INT 21 - Software Carousel - GET PARTITION SIZE AND PROGRAM STATUS
  1724.     AX = DF03h
  1725.     BL = task number
  1726. Return: AL = status
  1727.         00h Carousel not running
  1728.         01h successful
  1729.         BL = partition state (00h no program running, 01h prog running)
  1730.         DX = partition size in KB
  1731.         FFh unsucessful
  1732.         AH = error code (01h) (see AX=DF01h)
  1733. SeeAlso: AX=DF05h
  1734. --------T-21DF04-----------------------------
  1735. INT 21 - Software Carousel - GET PARTITION NAME
  1736.     AX = DF04h
  1737.     BL = task number
  1738. Return: AL = status
  1739.         00h Carousel not running
  1740.         01h successful
  1741.         CX = length of name (00h if default partition name)
  1742.         ES:BX -> partition name (if CX nonzero)
  1743.         FFh unsucessful
  1744.         AH = error code (01h) (see AX=DF01h)
  1745. SeeAlso: AX=DF06h
  1746. --------T-21DF05-----------------------------
  1747. INT 21 - Software Carousel - CHANGE PARTITION SIZE
  1748.     AX = DF05h
  1749.     BL = task number
  1750.     DX = new size in KB
  1751. Return: AL = status
  1752.         00h Carousel not running
  1753.         01h successful
  1754.         FFh unsucessful
  1755.         AH = error code (01h,04h,05h) (see AX=DF01h)
  1756.     BX = minimum size allowed
  1757.     CX = maximum size available
  1758. SeeAlso: AX=DF03h
  1759. --------T-21DF06-----------------------------
  1760. INT 21 - Software Carousel - CHANGE PARTITION NAME
  1761.     AX = DF06h
  1762.     BL = task number
  1763.     CX = length of new name (00h to use default, max 18h)
  1764.     DS:SI -> new name
  1765. Return: AL = status
  1766.         00h Carousel not running
  1767.         01h successful
  1768.         FFh unsucessful
  1769.         AH = error code (01h) (see AX=DF01h)
  1770. SeeAlso: AX=DF04h
  1771. --------T-21DF07-----------------------------
  1772. INT 21 - Software Carousel - SEND COMMAND TO MEMORY SECTION
  1773.     AX = DF07h
  1774.     BL = task number
  1775.     CX = length of command (max 8 chars)
  1776.     DS:SI -> command line
  1777. Return: AL = status
  1778.         00h Carousel not running
  1779.         01h successful
  1780.         FFh unsucessful
  1781.         AH = error code (01h,06h) (see AX=DF01h)
  1782. Note:    the maximum length seems too small and may be a typo for 80 characters
  1783. --------T-21DF08-----------------------------
  1784. INT 21 - Software Carousel - SELECTIVELY ENABLE/DISABLE MENU AND SWITCHING
  1785.     AX = DF08h
  1786.     BL = new state of keyboard (00h disabled, 01h enabled)
  1787. Return: AL = status
  1788.         00h Carousel not running
  1789.         01h successful
  1790. Program: Software Carousel is a task switcher by SoftLogic Solutions, Inc.
  1791. Note:    when the keyboard is is disabled, the user may neither access the
  1792.       Carousel menu nor switch to another memory section
  1793. --------T-21DF09-----------------------------
  1794. INT 21 - Software Carousel - BOOT THE SYSTEM
  1795.     AX = DF09h
  1796. Return: AL = status
  1797.         00h Carousel not running
  1798.         FFh unsucessful
  1799.         AH = error code (01h,03h) (see AX=DF01h)
  1800. Note:    this function never returns is successful
  1801. --------T-21DF0A-----------------------------
  1802. INT 21 - Software Carousel - GET MEMORY SIZE/PARTITION NUMBER OF CURRENT TASK
  1803.     AX = DF0Ah
  1804. Return: AL = status
  1805.         00h Carousel not running
  1806.         01h successful
  1807.         BL = task number
  1808.         DX = memory size in KB
  1809.         FFh unsucessful
  1810.         AH = error code (01h,03h) (see AX=DF01h)
  1811. --------T-21DF0B-----------------------------
  1812. INT 21 - Software Carousel - SET TASK SWITCH CALLBACK
  1813.     AX = DF0Bh
  1814.     BH = interrupt number or 00h
  1815.     BL = function number to invoke on partition switch
  1816.     CL = function number to call when it is safe for resident programs
  1817.         to perform DOS calls
  1818.     DS:DX -> FAR function to call if BH=00h
  1819. Return: AL = status
  1820.         00h Carousel not running
  1821.         01h successful
  1822.         FFh unsucessful
  1823.         AH = error code (01h,03h) (see AX=DF01h)
  1824. Notes:    the specified interrupt or FAR function is called with AH set to the
  1825.       appropriate one of the values specified in BL and CL, and BL set to
  1826.       the new task number
  1827.     the function specified by CL will not be called until the notification
  1828.       is enabled with AX=DF0Ch
  1829. SeeAlso: AX=DF0Ch
  1830. --------T-21DF0C-----------------------------
  1831. INT 21 - Software Carousel - ENABLE DOS-CALL SAFETY NOTIFICATION
  1832.     AX = DF0Ch
  1833. Return: AL = status
  1834.         00h Carousel not running
  1835.         01h successful
  1836. Program: Software Carousel is a task switcher by SoftLogic Solutions, Inc.
  1837. SeeAlso: AX=DF0Bh
  1838. --------O-21E0-------------------------------
  1839. INT 21 - Digital Research DOS Plus - CALL BDOS
  1840.     AH = E0h
  1841.     CL = BDOS function number (see INT E0"CP/M")
  1842.     other registers as appropriate for function
  1843. Return: as appropriate for function
  1844. SeeAlso: AX=4459h,INT E0"CP/M"
  1845. --------E-21E0-------------------------------
  1846. INT 21 - OS/286, OS/386 - INITIALIZE REAL PROCEDURE
  1847.     AH = E0h
  1848.     ???
  1849. Return: ???
  1850. SeeAlso: AH=E1h"OS/286"
  1851. --------T-21E0-------------------------------
  1852. INT 21 - DoubleDOS - MENU CONTROL
  1853.     AH = E0h
  1854.     AL = subfunction
  1855.         01h exchange tasks
  1856.         73h resume invisible job if suspended
  1857.         74h kill other job
  1858.         75h suspend invisible job
  1859. Note:    identical to AH=F0h
  1860. SeeAlso: AH=F0h"DoubleDOS"
  1861. --------v-21E0-------------------------------
  1862. INT 21 - VIRUS - "Jerusalem", "Armagedon" - INSTALLATION CHECK
  1863.     AH = E0h
  1864. Return: AX = 0300h if "Jerusalem" resident
  1865.     AX = DADAh if "Armagedon" resident
  1866. SeeAlso: AH=DEh"VIRUS",AX=DEDEh"VIRUS",AX=E00Fh
  1867. --------N-21E0-------------------------------
  1868. INT 21 - Novell NetWare, Alloy NTNX - PRINT SPOOLING
  1869.     AH = E0h
  1870.     DS:SI -> request buffer (see below)
  1871.     ES:DI -> reply buffer
  1872. Return: AL = status
  1873. Note:    this function was added in NetWare 4.0, but is no longer listed in
  1874.       current Novell documentation and may no longer be supported
  1875. SeeAlso: AH-E3h/SF=68h
  1876.  
  1877. Format of request buffer:
  1878. Offset    Size    Description
  1879.  00h    WORD    length of following data
  1880.  02h    BYTE    subfunction
  1881.         00h spool data to a capture file
  1882.         01h close and queue capture file
  1883.         02h set spool flags
  1884.         03h spool existing file
  1885.         04h get spool queue entry
  1886.         05h remove entry from spool queue
  1887.  03h    ???
  1888. --------N-21E0--SF06-------------------------
  1889. INT 21 - Novell NetWare - PRINT SERVICES - GET PRINTER STATUS
  1890.     AH = E0h subfn 06h
  1891.     DS:SI -> request buffer (see below)
  1892.     ES:DI -> reply buffer (see below)
  1893. Return: AL = status
  1894.         00h successful
  1895.         FFh no such printer
  1896. Desc:    get current state of specified printer attached to the server
  1897. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1898.       Alloy NTNX
  1899.  
  1900. Format of request buffer:
  1901. Offset    Size    Description
  1902.  00h    WORD    0002h (length of following data)
  1903.  02h    BYTE    06h (subfunction "Get Printer Status")
  1904.  03h    BYTE    printer number (00h-04h)
  1905.  
  1906. Format of reply buffer:
  1907. Offset    Size    Description
  1908.  00h    WORD    (call) 0004h (size of following results buffer)
  1909.  02h    BYTE    flag: 00h printer active, FFh printer halted
  1910.  03h    BYTE    flag: 00h printer online, 01h printer offline
  1911.  04h    BYTE    current form type
  1912.  05h    BYTE    target printer number (00h-04h)
  1913.         same as number in request buffer unless rerouted by server
  1914.         console
  1915. --------N-21E0--SF09-------------------------
  1916. INT 21 - Novell NetWare - PRINT SERVICES - SPECIFY CAPTURE FILE
  1917.     AH = E0h subfn 09h
  1918.     DS:SI -> request buffer (see below)
  1919.     ES:DI -> reply buffer (see below)
  1920. Return: AL = status
  1921.         00h successful
  1922.         9Ch invalid path
  1923. Desc:    create a permanent capture file for the next print capture to be
  1924.       started
  1925. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  1926.       Alloy NTNX
  1927.     the caller must have read, write, and create rights for the directory
  1928.       containing the capture file
  1929.  
  1930. Format of request buffer:
  1931. Offset    Size    Description
  1932.  00h    WORD    length of following data (max 102h)
  1933.  02h    BYTE    09h (subfunction "Specify Capture File")
  1934.  03h    BYTE    directory handle or 00h
  1935.  04h    BYTE    length of filename
  1936.  05h  N BYTEs    name of capture file
  1937.  
  1938. Format of reply buffer:
  1939. Offset    Size    Description
  1940.  00h    WORD    (call) 0000h (no results returned)
  1941. --------v-21E00F-----------------------------
  1942. INT 21 - VIRUS - "8-tunes" - INSTALLATION CHECK
  1943.     AX = E00Fh
  1944. Return: AX = 4C31h if resident
  1945. SeeAlso: AH=E0h"VIRUS",AH=E1h"VIRUS"
  1946. --------E-21E1-------------------------------
  1947. INT 21 - OS/286, OS/386 - ISSUE REAL PROCEDURE CALL
  1948.     AH = E1h
  1949.     ???
  1950. Return: ???
  1951. Note:    protected mode only???
  1952. SeeAlso: AH=E0h"OS/286",AH=E2h"OS/286",AH=E3h"OS/286",AX=250Eh,INT 31/AX=0301h
  1953. --------T-21E1-------------------------------
  1954. INT 21 - DoubleDOS - CLEAR KEYBOARD BUFFER FOR CURRENT JOB
  1955.     AH = E1h
  1956. SeeAlso: AH=E2h"DoubleDOS",AH=E3h"DoubleDOS",AH=E8h"DoubleDOS"
  1957. SeeAlso: AH=F1h"DoubleDOS"
  1958. --------v-21E1-------------------------------
  1959. INT 21 - VIRUS - "Mendoza", "Fu Manchu" - INSTALLATION CHECK
  1960.     AH = E1h
  1961. Return: AX = 0300h if "Mendoza" resident
  1962.     AX = 0400h if "Fu Manchu" resident
  1963. SeeAlso: AX=E00Fh,AH=E4h"VIRUS"
  1964. --------N-21E1--SF00-------------------------
  1965. INT 21 - Novell NetWare - MESSAGE SERVICES - SEND BROADCAST MESSAGE
  1966.     AH = E1h subfn 00h
  1967.     DS:SI -> request buffer (see below)
  1968.     ES:DI -> reply buffer (see below)
  1969. Return: AL = status
  1970.         00h successful
  1971.         FEh I/O error or out of dynamic workspace
  1972. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  1973. SeeAlso: AH=DEh"NetWare",AH=DEh/DL=04h,AH=E1h/SF=01h,AH=E1h/SF=04h
  1974. SeeAlso: AH=E1h/SF=09h
  1975.  
  1976. Format of request buffer:
  1977. Offset    Size    Description
  1978.  00h    WORD    length of following data (max 9Eh)
  1979.  02h    BYTE    00h (subfunction "Send Broadcast Message")
  1980.  03h    BYTE    number of connections (01h-64h)
  1981.  04h  N BYTEs    list of connections to receive broadcast message
  1982.     BYTE    length of message (01h-37h)
  1983.       N BYTEs    broadcast message (no control characters or characters > 7Eh)
  1984.  
  1985. Format of reply buffer:
  1986. Offset    Size    Description
  1987.  00h    WORD    (call) size of following results buffer (max 65h)
  1988.  02h    BYTE    number of connections
  1989.  03h  N BYTEs    list of per-connection results
  1990.         00h successful
  1991.         FCh message rejected due to lack of buffer space
  1992.         FDh invalid connection number
  1993.         FFh blocked (see also AH=E1h/SF=02h)
  1994. --------N-21E1--SF01-------------------------
  1995. INT 21 - Novell NetWare - MESSAGE SERVICES - GET BROADCAST MESSAGE
  1996.     AH = E1h subfn 01h
  1997.     DS:SI -> request buffer (see below)
  1998.     ES:DI -> reply buffer (see below)
  1999. Return: AL = status
  2000.         00h successful
  2001.         FCh full message queue
  2002.         FEh out of dynamic workspace
  2003. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2004. SeeAlso: AH=DEh/DL=04h,AH=E1h/SF=00h,AH=E1h/SF=05h,AH=E1h/SF=09h
  2005.  
  2006. Format of request buffer:
  2007. Offset    Size    Description
  2008.  00h    WORD    0001h (length of following data)
  2009.  02h    BYTE    01h (subfunction "Get Broadcast Message")
  2010.  
  2011. Format of reply buffer:
  2012. Offset    Size    Description
  2013.  00h    WORD    (call) size of following results buffer (max 38h)
  2014.  02h    BYTE    length of message (00h-37h)
  2015.         00h if no broadcast messages pending
  2016.  03h  N BYTEs    message (no control characters or characters > 7Eh)
  2017. --------N-21E1-------------------------------
  2018. INT 21 - Novell NetWare - MESSAGE SERVICES - ENABLE/DISABLE BROADCAST MESSAGES
  2019.     AH = E1h
  2020.     DS:SI -> request buffer (see below)
  2021.     ES:DI -> reply buffer
  2022. Return: AL = error code
  2023. Note:    these functions are supported by NetWare 4.0+ but are not listed in
  2024.       _NetWare_System_Calls--DOS_; they may be obsolete
  2025. SeeAlso: AH=E1h/SF=00h,AH=E1h/SF=04h,AH=E1h/SF=09h
  2026.  
  2027. Format of request buffer:
  2028. Offset    Size    Description
  2029.  00h    WORD    length of following data (max 9Eh)
  2030.  02h    BYTE    subfunction
  2031.         02h disable station broadcasts
  2032.         03h enable station broadcasts
  2033.  03h    ???
  2034.  
  2035. Format of reply buffer:
  2036. Offset    Size    Description
  2037.  00h    WORD    (call) size of following results buffer
  2038.  02h    ???
  2039. --------N-21E1--SF04-------------------------
  2040. INT 21 - Novell NetWare - MESSAGE SERVICES - SEND PERSONAL MESSAGE
  2041.     AH = E1h subfn 04h
  2042.     DS:SI -> request buffer (see below)
  2043.     ES:DI -> reply buffer (see below)
  2044. Return: AL = status
  2045.         00h successful
  2046.         FEh I/O error or out of dynamic workspace
  2047. Notes:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2048.     message pipes use CPU time on the file server; IPX, SPX, or NetBIOS
  2049.       connections should be used for peer-to-peer communications as these
  2050.       protocols do not use file server time
  2051. SeeAlso: AH=E1h/SF=00h,AH=E1h/SF=05h,AH=E1h/SF=06h,AH=E1h/SF=08h
  2052.  
  2053. Format of request buffer:
  2054. Offset    Size    Description
  2055.  00h    WORD    length of following data (max E5h)
  2056.  02h    BYTE    04h (subfunction "Send Personal Message")
  2057.  03h    BYTE    number of connections (01h-64h)
  2058.  04h  N BYTEs    list of connections to receive broadcast message
  2059.     BYTE    length of message (01h-7Eh)
  2060.       N BYTEs    message (no control characters or characters > 7Eh)
  2061.  
  2062. Format of reply buffer:
  2063. Offset    Size    Description
  2064.  00h    WORD    (call) size of following results buffer (max 65h)
  2065.  02h    BYTE    number of connections
  2066.  03h  N BYTEs    list of per-connection results
  2067.         00h successful
  2068.         FCh message rejected because queue is full (contains 6 msgs)
  2069.         FDh incomplete pipe
  2070.         FFh failed
  2071. --------N-21E1--SF05-------------------------
  2072. INT 21 - Novell NetWare - MESSAGE SERVICES - GET PERSONAL MESSAGE
  2073.     AH = E1h subfn 05h
  2074.     DS:SI -> request buffer (see below)
  2075.     ES:DI -> reply buffer (see below)
  2076. Return: AL = status
  2077.         00h successful
  2078.         FEh out of dynamic workspace
  2079. Desc:    return the oldest message in the default file server's message queue
  2080.       for the calling workstation
  2081. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2082. SeeAlso: AH=E1h/SF=01h,AH=E1h/SF=04h,AH=E1h/SF=06h,AH=E1h/SF=08h
  2083.  
  2084. Format of request buffer:
  2085. Offset    Size    Description
  2086.  00h    WORD    0001h (length of following data)
  2087.  02h    BYTE    05h (subfunction "Get Personal Message")
  2088.  
  2089. Format of reply buffer:
  2090. Offset    Size    Description
  2091.  00h    WORD    (call) size of following results buffer (max 80h)
  2092.  02h    BYTE    connection number of sending station
  2093.  03h    BYTE    length of message (00h-7Eh)
  2094.         00h if no personal messages pending
  2095.  04h  N BYTEs    message (no control characters or characters > 7Eh)
  2096. --------N-21E1--SF06-------------------------
  2097. INT 21 - Novell NetWare - MESSAGE SERVICES - OPEN MESSAGE PIPE
  2098.     AH = E1h subfn 06h
  2099.     DS:SI -> request buffer (see below)
  2100.     ES:DI -> reply buffer (see below)
  2101. Return: AL = status
  2102.         00h successful
  2103.         FEh out of dynamic workspace
  2104. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2105. SeeAlso: AH=E1h/SF=04h,AH=E1h/SF=07h,AH=E1h/SF=08h
  2106.  
  2107. Format of request buffer:
  2108. Offset    Size    Description
  2109.  00h    WORD    length of following data (max 66h)
  2110.  02h    BYTE    06h (subfunction "Open Message Pipe")
  2111.  03h    BYTE    number of pipes to open (01h-64h)
  2112.  04h  N BYTEs    list of connection numbers
  2113.  
  2114. Format of reply buffer:
  2115. Offset    Size    Description
  2116.  00h    WORD    (call) size of following results buffer (max 65h)
  2117.  02h    BYTE    number of connections
  2118.  03h  N BYTEs    list of results
  2119.         00h successful
  2120.         FEh incomplete (target half not yet created)
  2121.         FFh failed
  2122. --------N-21E1--SF07-------------------------
  2123. INT 21 - Novell NetWare - MESSAGE SERVICES - CLOSE MESSAGE PIPE
  2124.     AH = E1h subfn 07h
  2125.     DS:SI -> request buffer (see below)
  2126.     ES:DI -> reply buffer (see below)
  2127. Return: AL = status
  2128.         00h successful
  2129.         FCh full message queue
  2130.         FEh out of dynamic workspace
  2131. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2132. SeeAlso: AH=E1h/SF=05h,AH=E1h/SF=06h,AH=E1h/SF=08h
  2133.  
  2134. Format of request buffer:
  2135. Offset    Size    Description
  2136.  00h    WORD    length of following data (max 66h)
  2137.  02h    BYTE    07h (subfunction "Close Message Pipe")
  2138.  03h    BYTE    number of pipes to close (01h-64h)
  2139.  04h  N BYTEs    list of connection numbers
  2140.  
  2141. Format of reply buffer:
  2142. Offset    Size    Description
  2143.  00h    WORD    (call) size of following results buffer (max 65h)
  2144.  02h    BYTE    number of connections
  2145.  03h  N BYTEs    list of results
  2146.         00h successful
  2147.         FDh failed
  2148.         FFh no such pipe
  2149. --------N-21E1--SF08-------------------------
  2150. INT 21 - Novell NetWare - MESSAGE SERVICES - CHECK PIPE STATUS
  2151.     AH = E1h subfn 08h
  2152.     DS:SI -> request buffer (see below)
  2153.     ES:DI -> reply buffer (see below)
  2154. Return: AL = status (see below)
  2155. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2156. SeeAlso: AH=E1h/SF=05h,AH=E1h/SF=06h,AH=E1h/SF=07h
  2157.  
  2158. Values for status:
  2159.  00h    successful
  2160.  FCh    full message queue
  2161.  FEh    out of dynamic workspace
  2162.  
  2163. Format of request buffer:
  2164. Offset    Size    Description
  2165.  00h    WORD    length of following data (max 66h)
  2166.  02h    BYTE    08h (subfunction "Check Pipe Status")
  2167.  03h    BYTE    number of pipes to monitor (01h-64h)
  2168.  04h  N BYTEs    list of connection numbers
  2169.  
  2170. Format of reply buffer:
  2171. Offset    Size    Description
  2172.  00h    WORD    (call) size of following results buffer (max 65h)
  2173.  02h    BYTE    number of connections
  2174.  03h  N BYTEs    list of pipe statuses
  2175.         00h open
  2176.         FEh incomplete
  2177.         FFh closed
  2178. --------N-21E1--SF09-------------------------
  2179. INT 21 - Novell NetWare - MESSAGE SERVICES - BROADCAST TO CONSOLE
  2180.     AH = E1h subfn 09h
  2181.     DS:SI -> request buffer (see below)
  2182.     ES:DI -> reply buffer (see below)
  2183. Return: AL = status (see AH=E1h/SF=08h)
  2184. Desc:    send a one-line message to the system console on the default file
  2185.       server
  2186. Note:    this function is supported by NetWare 4.0+ and Advanced NetWare 1.0+
  2187. SeeAlso: AH=DEh/DL=04h,AH=E1h/SF=00h,AH=E1h/SF=01h,AH=E3h/SF=D1h
  2188.  
  2189. Format of request buffer:
  2190. Offset    Size    Description
  2191.  00h    WORD    length of following data (max 3Eh)
  2192.  02h    BYTE    09h (subfunction "Broadcast to Console")
  2193.  03h    BYTE    length of message (01h-3Ch)
  2194.  04h  N BYTEs    message (no control characters or characters > 7Eh)
  2195.  
  2196. Format of reply buffer:
  2197. Offset    Size    Description
  2198.  00h    WORD    (call) 0000h (no results returned)
  2199. --------E-21E2-------------------------------
  2200. INT 21 - OS/286, OS/386 - SET REAL PROCEDURE SIGNAL HANDLER
  2201.     AH = E2h
  2202.     ???
  2203. Return: ???
  2204. SeeAlso: AH=E0h"OS/286",AH=E1h"OS/286",AH=E6h"OS/286"
  2205. --------N-21E2-------------------------------
  2206. INT 21 - DoubleDOS - SEND CHARACTER TO KEYBOARD BUFFER OF OTHER JOB
  2207.     AH = E2h
  2208.     AL = character
  2209. Return: AL = 00h successful
  2210.          01h buffer full (128 characters)
  2211. SeeAlso: AH=E1h"DoubleDOS",AH=E3h"DoubleDOS",AH=E8h"DoubleDOS"
  2212. SeeAlso: AH=F2h"DoubleDOS"
  2213. --------N-21E2--SF00-------------------------
  2214. INT 21 - Novell NetWare - DIRECTORY SERVICES - SET DIRECTORY HANDLE
  2215.     AH = E2h subfn 00h
  2216.     DS:SI -> request buffer (see below)
  2217.     ES:DI -> reply buffer (see below)
  2218. Return: AL = status (00h,98h,9Bh,9Ch) (see below)
  2219. Desc:    set the target handle to reference the directory specified by the
  2220.       source handle and the source path; both handles must refer to the
  2221.       same file server
  2222. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2223.       Alloy NTNX
  2224.     the target handle is not changed if this function fails
  2225. SeeAlso: AH=E2h/SF=01h,AH=E2h/SF=12h,AH=E2h/SF=13h
  2226.  
  2227. Values for status:
  2228.  00h    successful
  2229.  84h    not permitted to create
  2230.  8Ah    not permitted to delete
  2231.  8Bh    not permitted to rename
  2232.  8Ch    not permitted to modify
  2233.  98h    nonexistent volume
  2234.  9Bh    invalid directory handle
  2235.  9Ch    invalid path
  2236.  9Eh    invalid filename
  2237.  9Fh    directory currently in use
  2238.  A0h    directory not empty
  2239.  FCh    no such bindery object
  2240.  
  2241. Format of request buffer:
  2242. Offset    Size    Description
  2243.  00h    WORD    length of following data (max 103h)
  2244.  02h    BYTE    00h (subfunction "Set Directory Handle")
  2245.  03h    BYTE    directory handle of target
  2246.  04h    BYTE    directory handle of source
  2247.  05h    BYTE    length of source directory path (01h-FFh)
  2248.  06h  N BYTEs    source directory path
  2249.  
  2250. Format of reply buffer:
  2251. Offset    Size    Description
  2252.  00h    WORD    (call) 0000h (no results returned)
  2253. --------N-21E2--SF01-------------------------
  2254. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET DIRECTORY PATH
  2255.     AH = E2h subfn 01h
  2256.     DS:SI -> request buffer (see below)
  2257.     ES:DI -> reply buffer (see below)
  2258. Return: AL = status (00h,9Bh) (see AH=E2h/SF=00h)
  2259. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2260.       Alloy NTNX
  2261. SeeAlso: AH=E2h/SF=02h,AH=E2h/SF=03h,AH=E2h/SF=1Ah,AH=E9h
  2262.  
  2263. Format of request buffer:
  2264. Offset    Size    Description
  2265.  00h    WORD    0002h (length of following data)
  2266.  02h    BYTE    01h (subfunction "Get Directory Path")
  2267.  03h    BYTE    directory handle
  2268.  
  2269. Format of reply buffer:
  2270. Offset    Size    Description
  2271.  00h    WORD    (call) length of following data buffer
  2272.  02h    BYTE    length of directory path (01h-FFh)
  2273.  03h  N BYTEs    full directory path including volume
  2274. --------N-21E2--SF02-------------------------
  2275. INT 21 - Novell NetWare - DIRECTORY SERVICES - SCAN DIRECTORY INFORMATION
  2276.     AH = E2h subfn 02h
  2277.     DS:SI -> request buffer (see below)
  2278.     ES:DI -> reply buffer (see below)
  2279. Return: AL = status (00h,98h,9Bh,9Ch) (see AH=E2h/SF=00h)
  2280. Desc:    get information about the first or next subdirectory of the specified
  2281.       directory
  2282. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2283.       Alloy NTNX
  2284. SeeAlso: AH=E2h/SF=01h,AH=E2h/SF=03h,AH=E2h/SF=19h
  2285.  
  2286. Format of request buffer:
  2287. Offset    Size    Description
  2288.  00h    WORD    length of following data (max 104h)
  2289.  02h    BYTE    02h (subfunction "Scan Directory Information")
  2290.  03h    BYTE    directory handle
  2291.  04h    WORD    (big-endian) subdirectory number
  2292.         0000h for first call, returned subdir number + 1 on next call
  2293.  06h    BYTE    length of directory path
  2294.  07h  N BYTEs    directory path
  2295.  
  2296. Format of reply buffer:
  2297. Offset    Size    Description
  2298.  00h    WORD    (call) 001Ch (length of following data buffer)
  2299.  02h 16 BYTEs    subdirectory name
  2300.  12h    DWORD    (big-endian) date and time of creation (see below)
  2301.  16h    DWORD    (big-endian) object ID of owner
  2302.  1Ah    BYTE    maximum directory rights (see AH=E2h/SF=03h)
  2303.  1Bh    BYTE    unused
  2304.  1Ch    WORD    (big-endian) subdirectory number
  2305.  
  2306. Bitfields for date and time:
  2307.  bits 31-25    year-1980
  2308.  bits 24-21    month
  2309.  bits 20-16    day
  2310.  bits 15-11    hour
  2311.  bits 10-5    minute
  2312.  bits 4-0    second
  2313. --------N-21E2--SF03-------------------------
  2314. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET EFFECTIVE DIRECTORY RIGHTS
  2315.     AH = E2h subfn 03h
  2316.     DS:SI -> request buffer (see below)
  2317.     ES:DI -> reply buffer (see below)
  2318. Return: AL = status (00h,98h,9Bh) (see AH=E2h/SF=00h)
  2319. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2320.       Alloy NTNX
  2321. SeeAlso: AH=E2h/SF=01h,AH=E2h/SF=02h
  2322.  
  2323. Format of request buffer:
  2324. Offset    Size    Description
  2325.  00h    WORD    length of following data (max 102h)
  2326.  02h    BYTE    03h (subfunction "Get Effective Directory Rights")
  2327.  03h    BYTE    directory handle
  2328.  04h    BYTE    length of directory path (00h-FFh)
  2329.  05h  N BYTEs    directory path
  2330.  
  2331. Format of reply buffer:
  2332. Offset    Size    Description
  2333.  00h    WORD    (call) 0001h (length of following data buffer)
  2334.  02h    BYTE    effective directory rights (see below)
  2335.  
  2336. Bitfields for directory rights:
  2337.  bit 0    reading allowed
  2338.  bit 1    writing allowed
  2339.  bit 2    opens allowed
  2340.  bit 3    file creation allowed
  2341.  bit 4    deletion allowed
  2342.  bit 5    "parental" may create/delete subdirectories and
  2343.     grant/revoke trustee rights
  2344.  bit 6    directory search allowed
  2345.  bit 7    file attributes may be changed
  2346. --------N-21E2--SF04-------------------------
  2347. INT 21 - Novell NetWare - DIRECTORY SERVICES - MODIFY MAXIMUM RIGHTS MASK
  2348.     AH = E2h subfn 04h
  2349.     DS:SI -> request buffer (see below)
  2350.     ES:DI -> reply buffer (see below)
  2351. Return: AL = status (00h,8Ch,98h,9Ch) (see AH=E2h/SF=00h)
  2352. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2353.       Alloy NTNX
  2354. SeeAlso: AH=E2h/SF=03h,AH=E2h/SF=0Ah,AH=E2h/SF=0Dh
  2355.  
  2356. Format of request buffer:
  2357. Offset    Size    Description
  2358.  00h    WORD    length of following data (max 104h)
  2359.  02h    BYTE    04h (subfunction "Modify Maximum Rights Mask")
  2360.  03h    BYTE    directory handle
  2361.  04h    BYTE    rights to grant (see AH=E2h/SF=03h)
  2362.  05h    BYTE    rights to revoke (see AH=E2h/SF=03h)
  2363.  06h    BYTE    length of directory path (00h-FFh)
  2364.  07h  N BYTEs    directory path
  2365. Note:    the rights specified at offset 05h are revoked first, and then the
  2366.       rights specified at offset 04h are added to the resulting rights
  2367.       mask
  2368.  
  2369. Format of reply buffer:
  2370. Offset    Size    Description
  2371.  00h    WORD    (call) 0000h (no results returned)
  2372. --------N-21E2--SF05-------------------------
  2373. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET VOLUME NUMBER
  2374.     AH = E2h subfn 05h
  2375.     DS:SI -> request buffer (see below)
  2376.     ES:DI -> reply buffer (see below)
  2377. Return: AL = status (00h,98h) (see AH=E2h/SF=00h)
  2378. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2379.       Alloy NTNX
  2380. SeeAlso: AH=DAh,AH=E2h/SF=02h,AH=E2h/SF=05h,AH=E2h/SF=15h,AH=E3h/SF=E9h
  2381.  
  2382. Format of request buffer:
  2383. Offset    Size    Description
  2384.  00h    WORD    length of following data (max 12h)
  2385.  02h    BYTE    05h (subfunction "Get Volume Number")
  2386.  03h    BYTE    length of volume name (01h-10h)
  2387.  04h  N BYTEs    volume name
  2388.  
  2389. Format of reply buffer:
  2390. Offset    Size    Description
  2391.  00h    WORD    (call) 0001h (length of following results buffer)
  2392.  02h    BYTE    volume number
  2393. --------N-21E2--SF06-------------------------
  2394. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET VOLUME NAME
  2395.     AH = E2h subfn 06h
  2396.     DS:SI -> request buffer (see below)
  2397.     ES:DI -> reply buffer (see below)
  2398. Return: AL = status (00h,98h) (see AH=E2h/SF=00h)
  2399. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2400.       Alloy NTNX
  2401. SeeAlso: AH=DAh,AH=E2h/SF=02h,AH=E2h/SF=05h,AH=E2h/SF=15h,AH=E2h/SF=1Ah
  2402. SeeAlso: AH=E3h/SF=E9h
  2403.  
  2404. Format of request buffer:
  2405. Offset    Size    Description
  2406.  00h    WORD    0002h (length of following data)
  2407.  02h    BYTE    06h (subfunction "Get Volume Name")
  2408.  03h    BYTE    volume number
  2409.  
  2410. Format of reply buffer:
  2411. Offset    Size    Description
  2412.  00h    WORD    (call) 0011h (length of following results buffer)
  2413.  02h    BYTE    length of volume name
  2414.  03h 16 BYTEs    NUL-padded volume name
  2415. --------N-21E2--SF0A-------------------------
  2416. INT 21 - Novell NetWare - DIRECTORY SERVICES - CREATE DIRECTORY
  2417.     AH = E2h subfn 0Ah
  2418.     DS:SI -> request buffer (see below)
  2419.     ES:DI -> reply buffer (see below)
  2420. Return: AL = status (00h,84h,98h,FCh) (see AH=E2h/SF=00h)
  2421. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2422.       Alloy NTNX
  2423. SeeAlso: AH=39h,AH=E2h/SF=0Bh,AH=E2h/SF=0Fh
  2424.  
  2425. Format of request buffer:
  2426. Offset    Size    Description
  2427.  00h    WORD    length of following data (max 103h)
  2428.  02h    BYTE    0Ah (subfunction "Create Directory")
  2429.  03h    BYTE    directory handle
  2430.  04h    BYTE    maximum directory rights (see AH=E2h/SF=01h)
  2431.  05h    BYTE    length of directory path (00h-FFh)
  2432.  06h  N BYTEs    directory path
  2433.  
  2434. Format of reply buffer:
  2435. Offset    Size    Description
  2436.  00h    WORD    (call) 0000h (no data returned)
  2437. --------N-21E2--SF0B-------------------------
  2438. INT 21 - Novell NetWare - DIRECTORY SERVICES - DELETE DIRECTORY
  2439.     AH = E2h subfn 0Bh
  2440.     DS:SI -> request buffer (see below)
  2441.     ES:DI -> reply buffer (see below)
  2442. Return: AL = status (00h,8Ah,98h,9Bh,9Ch,9Fh,A0h) (see AH=E2h/SF=00h)
  2443. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2444.       Alloy NTNX
  2445. SeeAlso: AH=3Ah,AH=E2h/SF=0Ah,AH=E2h/SF=0Fh
  2446.  
  2447. Format of request buffer:
  2448. Offset    Size    Description
  2449.  00h    WORD    length of following data (max 103h)
  2450.  02h    BYTE    0Bh (subfunction "Delete Directory")
  2451.  03h    BYTE    directory handle
  2452.  04h    BYTE    unused
  2453.  05h    BYTE    length of directory path (00h-FFh)
  2454.  06h  N BYTEs    directory path
  2455.  
  2456. Format of reply buffer:
  2457. Offset    Size    Description
  2458.  00h    WORD    (call) 0000h (no data returned)
  2459. --------N-21E2--SF0C-------------------------
  2460. INT 21 - Novell NetWare - DIRECTORY SERVICES - SCAN DIRECTORY FOR TRUSTEES
  2461.     AH = E2h subfn 0Ch
  2462.     DS:SI -> request buffer (see below)
  2463.     ES:DI -> reply buffer (see below)
  2464. Return: AL = status
  2465.         00h successful
  2466.         9Ch no more trustees
  2467. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  2468. SeeAlso: AH=E2h/SF=0Dh,AH=E2h/SF=0Eh,AH=E3h/SF=47h
  2469.  
  2470. Format of request buffer:
  2471. Offset    Size    Description
  2472.  00h    WORD    length of following data (max 103h)
  2473.  02h    BYTE    0Ch (subfunction "Scan Directory For Trustees")
  2474.  03h    BYTE    directory handle
  2475.  04h    BYTE    sequence number
  2476.         00h on first call, increment for each subsequent call
  2477.  05h    BYTE    length of directory path (00h-FFh)
  2478.  06h  N BYTEs    directory path
  2479.  
  2480. Format of reply buffer:
  2481. Offset    Size    Description
  2482.  00h    WORD    (call) 0031h (length of following results buffer)
  2483.  02h 16 BYTEs    directory name
  2484.  12h  4 BYTEs    date and time of creation
  2485.  16h    DWORD    (big-endian) object ID of owner
  2486.  1Ah  5 DWORDs    (big-endian) object IDs of Trustees 0 through 4
  2487.         00000000h = end of group
  2488.  2Eh  5 BYTEs    directory rights for Trustees 0 through 4 (see AH=E2h/SF=03h)
  2489. --------N-21E2--SF0D-------------------------
  2490. INT 21 - Novell NetWare - DIRECTORY SERVICES - ADD TRUSTEE TO DIRECTORY
  2491.     AH = E2h subfn 0Dh
  2492.     DS:SI -> request buffer (see below)
  2493.     ES:DI -> reply buffer (see below)
  2494. Return: AL = status (00h,8Ch,FCh) (see AH=E2h/SF=00h)
  2495. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2496.       Alloy NTNX
  2497. SeeAlso: AH=E2h/SF=0Ch,AH=E2h/SF=0Eh,AH=E3h/SF=47h
  2498.  
  2499. Format of request buffer:
  2500. Offset    Size    Description
  2501.  00h    WORD    length of following data (max 107h)
  2502.  02h    BYTE    0Dh (subfunction "Add Trustee To Directory")
  2503.  03h    BYTE    directory handle
  2504.  04h    DWORD    (big-endian) object ID of trustee
  2505.  08h    BYTE    trustee directory rights (see AH=E2h/SF=01h)
  2506.  09h    BYTE    length of directory path (00h-FFh)
  2507.  0Ah  N BYTEs    directory path
  2508.  
  2509. Format of reply buffer:
  2510. Offset    Size    Description
  2511.  00h    WORD    (call) 0000h (no data returned)
  2512. --------N-21E2--SF0E-------------------------
  2513. INT 21 - Novell NetWare - DIRECTORY SERVICES - DELETE TRUSTEE FROM DIRECTORY
  2514.     AH = E2h subfn 0Eh
  2515.     DS:SI -> request buffer (see below)
  2516.     ES:DI -> reply buffer (see below)
  2517. Return: AL = status (00h,98h,9Bh,9Ch) (see AH=E2h/SF=00h)
  2518. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2519.       Alloy NTNX
  2520. SeeAlso: AH=E2h/SF=0Ch,AH=E2h/SF=0Dh
  2521.  
  2522. Format of request buffer:
  2523. Offset    Size    Description
  2524.  00h    WORD    length of following data (max 107h)
  2525.  02h    BYTE    0Eh (subfunction "Delete Trustee From Directory")
  2526.  03h    BYTE    directory handle
  2527.  04h    DWORD    (big-endian) object ID of trustee
  2528.  08h    BYTE    unused
  2529.  09h    BYTE    length of directory path (00h-FFh)
  2530.  0Ah  N BYTEs    directory path
  2531.  
  2532. Format of reply buffer:
  2533. Offset    Size    Description
  2534.  00h    WORD    (call) 0000h (no data returned)
  2535. --------N-21E2--SF0F-------------------------
  2536. INT 21 - Novell NetWare - DIRECTORY SERVICES - RENAME DIRECTORY
  2537.     AH = E2h subfn 0Fh
  2538.     DS:SI -> request buffer (see below)
  2539.     ES:DI -> reply buffer (see below)
  2540. Return: AL = status (00h,8Bh,9Bh,9Ch,9Eh) (see AH=E2h/SF=00h)
  2541. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2542.       Alloy NTNX
  2543.     directories SYS:LOGIN, SYS:MAIL, and SYS:PUBLIC must not be renamed
  2544. SeeAlso: AH=56h,AH=E2h/SF=0Ah,AH=E2h/SF=0Bh
  2545.  
  2546. Format of request buffer:
  2547. Offset    Size    Description
  2548.  00h    WORD    length of following data (max 111h)
  2549.  02h    BYTE    0Fh (subfunction "Rename Directory")
  2550.  03h    BYTE    directory handle
  2551.  04h    BYTE    length of directory path (00h-FFh)
  2552.  05h  N BYTEs    directory path
  2553.     BYTE    length of new directory name (01h-0Eh)
  2554.       N BYTEs    new directory name
  2555.  
  2556. Format of reply buffer:
  2557. Offset    Size    Description
  2558.  00h    WORD    (call) 0000h (no data returned)
  2559. --------N-21E2--SF10-------------------------
  2560. INT 21 - Novell NetWare - FILE SERVICES - PURGE ERASED FILES
  2561.     AH = E2h subfn 10h
  2562.     DS:SI -> request buffer (see below)
  2563.     ES:DI -> reply buffer (see below)
  2564. Return: AL = status
  2565.         00h successful
  2566.         C6h no console rights
  2567. Desc:    purges files marked for deletion on the file server by the calling
  2568.       workstation
  2569. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2570.       Alloy NTNX
  2571. SeeAlso: AH=13h,AH=41h,AH=E2h/SF=11h,AH=E3h/SF=CEh,AX=F244h
  2572.  
  2573. Format of request buffer:
  2574. Offset    Size    Description
  2575.  00h    WORD    0001h (length of following data)
  2576.  02h    BYTE    10h (subfunction "Purge Erased Files")
  2577.  
  2578. Format of reply buffer:
  2579. Offset    Size    Description
  2580.  00h    WORD    (call) 0000h (no results returned)
  2581. --------N-21E2--SF11-------------------------
  2582. INT 21 - Novell NetWare - FILE SERVICES - RESTORE ERASED FILE
  2583.     AH = E2h subfn 11h
  2584.     DS:SI -> request buffer (see below)
  2585.     ES:DI -> reply buffer (see below)
  2586. Return: AL = status
  2587.         00h successful
  2588.         98h nonexistent volume
  2589.         FFh no more erased files
  2590. Desc:    restores one file marked for deletion which has not yet been purged
  2591. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2592.       Alloy NTNX
  2593. SeeAlso: AH=13h,AH=41h,AH=E2h/SF=10h,AH=E3h/SF=CEh,AX=F244h
  2594.  
  2595. Format of request buffer:
  2596. Offset    Size    Description
  2597.  00h    WORD    length of following data (max 13h)
  2598.  02h    BYTE    11h (subfunction "Restore Erased File")
  2599.  03h    BYTE    directory handle or 00h
  2600.  04h    BYTE    length of volume name
  2601.  05h  N BYTEs    volume name (including colon)
  2602. Note:    if both a directory handle and a volume name are specified, the volume
  2603.       name overrides the handle
  2604.  
  2605. Format of reply buffer:
  2606. Offset    Size    Description
  2607.  00h    WORD    (call) 001Eh (size of following results buffer)
  2608.  02h 15 BYTEs    ASCIZ name of erased file
  2609.  11h 15 BYTEs    ASCIZ name under which file was restored
  2610. --------N-21E2--SF12-------------------------
  2611. INT 21 - Novell NetWare - DIRECTORY SERVICES - ALLOC PERMANENT DIRECTORY HANDLE
  2612.     AH = E2h subfn 12h
  2613.     DS:SI -> request buffer (see below)
  2614.     ES:DI -> reply buffer (see below)
  2615. Return: AL = status (00h,98h,9Ch) (see AH=E2h/SF=00h)
  2616. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2617.       Alloy NTNX
  2618. SeeAlso: AH=E2h/SF=00h,AH=E2h/SF=13h,AH=E2h/SF=14h
  2619.  
  2620. Format of request buffer:
  2621. Offset    Size    Description
  2622.  00h    WORD    length of following data (max 103h)
  2623.  02h    BYTE    12h (subfunction "Alloc Permanent Directory Handle")
  2624.  03h    BYTE    directory handle
  2625.  04h    BYTE    drive ('A'-'Z')
  2626.  05h    BYTE    length of directory path
  2627.  06h  N BYTEs    directory path
  2628.  
  2629. Format of reply buffer:
  2630. Offset    Size    Description
  2631.  00h    WORD    (call) 0002h (size of following results buffer)
  2632.  02h    BYTE    new directory handle
  2633.  03h    BYTE    effective directory rights (see AH=E2h/SF=01h)
  2634. --------N-21E2--SF13-------------------------
  2635. INT 21 - Novell NetWare - DIRECTORY SERVICES - ALLOC TEMPORARY DIRECTORY HANDLE
  2636.     AH = E2h subfn 13h
  2637.     DS:SI -> request buffer (see below)
  2638.     ES:DI -> reply buffer (see AH=E2h/SF=12h)
  2639. Return: AL = status (00h,98h,9Ch) (see AH=E2h/SF=00h)
  2640. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2641.       Alloy NTNX
  2642.     this call is the same as AH=E2h/SF=12h except that the directory handle
  2643.       will be automatically deallocated when the calling application
  2644.       executes an End of Job call (AH=D6h) or terminates
  2645. SeeAlso: AH=D6h,AH=E2h/SF=00h,AH=E2h/SF=12h,AH=E2h/SF=14h,AH=E2h/SF=16h
  2646.  
  2647. Format of request buffer:
  2648. Offset    Size    Description
  2649.  00h    WORD    length of following data (max 103h)
  2650.  02h    BYTE    13h (subfunction "Alloc Temporary Directory Handle")
  2651.  03h    BYTE    directory handle
  2652.  04h    BYTE    drive ('A'-'Z')
  2653.  05h    BYTE    length of directory path
  2654.  06h  N BYTEs    directory path
  2655. --------N-21E2--SF14-------------------------
  2656. INT 21 - Novell NetWare - DIRECTORY SERVICES - DEALLOCATE DIRECTORY HANDLE
  2657.     AH = E2h subfn 14h
  2658.     DS:SI -> request buffer (see below)
  2659.     ES:DI -> reply buffer (see below)
  2660. Return: AL = status (00h,9Bh) (see AH=E2h/SF=00h)
  2661. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2662.       Alloy NTNX
  2663. SeeAlso: AH=E2h/SF=12h,AH=E2h/SF=13h
  2664.  
  2665. Format of request buffer:
  2666. Offset    Size    Description
  2667.  00h    WORD    0002h (length of following data)
  2668.  02h    BYTE    14h (subfunction "Deallocate Directory Handle")
  2669.  03h    BYTE    directory handle
  2670.  
  2671. Format of reply buffer:
  2672. Offset    Size    Description
  2673.  00h    WORD    (call) 0000h (no returned data)
  2674. --------N-21E2--SF15-------------------------
  2675. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET VOLUME INFO WITH HANDLE
  2676.     AH = E2h subfn 15h
  2677.     DS:SI -> request buffer (see below)
  2678.     ES:DI -> reply buffer (see below)
  2679. Return: AL = status
  2680.         00h successful
  2681. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2682.       Alloy NTNX
  2683. SeeAlso: AH=DAh,AH=E2h/SF=02h,AH=E2h/SF=06h,AH=E2h/SF=19h,AH=E3h/SF=E9h
  2684.  
  2685. Format of request buffer:
  2686. Offset    Size    Description
  2687.  00h    WORD    0002h (length of following data)
  2688.  02h    BYTE    15h (subfunction "Get Volume Info With Handle")
  2689.  03h    BYTE    directory handle
  2690.  
  2691. Format of reply buffer:
  2692. Offset    Size    Description
  2693.  00h    WORD    (call) 001Ch (length of following results buffer)
  2694.  02h    WORD    (big-endian) sectors per block
  2695.  04h    WORD    (big-endian) total blocks on volume
  2696.  06h    WORD    (big-endian) blocks available on volume
  2697.  08h    WORD    (big-endian) total directory slots
  2698.  0Ah    WORD    (big-endian) directory slots available
  2699.  0Ch 16 BYTEs    NUL-padded volume name
  2700.  1Ch    WORD    (big-endian) flag: volume removable if nonzero
  2701. --------N-21E2--SF16-------------------------
  2702. INT 21 u - Novell NetWare - DIRECTORY SERVICES - ALLOC SPECIAL TEMP DIR HANDLE
  2703.     AH = E2h subfn 16h
  2704.     DS:SI -> request buffer (see below)
  2705.     ES:DI -> reply buffer
  2706. Return: AL = status
  2707. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX,
  2708.       but is not described in _NetWare_System_Calls--DOS_
  2709. SeeAlso: AH=E2h/SF=13h,AH=E2h/SF=14h
  2710.  
  2711. Format of request buffer:
  2712. Offset    Size    Description
  2713.  00h    WORD    length of following data
  2714.  02h    BYTE    16h (subfunction "Allocate Special Temporary Directory Handle")
  2715.     ???
  2716. --------N-21E2--SF17-------------------------
  2717. INT 21 - Novell NetWare - DIRECTORY SERVICES - SAVE DIRECTORY HANDLE
  2718.     AH = E2h subfn 17h
  2719.     DS:SI -> request buffer (see below)
  2720.     ES:DI -> reply buffer (see below)
  2721. Return: AL = status
  2722.         00h successful
  2723.         else network error code
  2724. Note:    this function is supported by Advanced NetWare 2.0+ and Alloy NTNX
  2725. SeeAlso: AH=E2h/SF=12h,AH=E2h/SF=17h
  2726.  
  2727. Format of request buffer:
  2728. Offset    Size    Description
  2729.  00h    WORD    0002h (length of following data)
  2730.  02h    BYTE    18h (subfunction "Restore Directory Handle")
  2731.  03h    BYTE    directory handle
  2732.  
  2733. Format of reply buffer:
  2734. Offset    Size    Description
  2735.  00h    WORD    (call) 0010h (length of following results buffer)
  2736.  02h 16 BYTEs    save buffer
  2737. --------N-21E2--SF18-------------------------
  2738. INT 21 - Novell NetWare - DIRECTORY SERVICES - RESTORE DIRECTORY HANDLE
  2739.     AH = E2h subfn 18h
  2740.     DS:SI -> request buffer (see below)
  2741.     ES:DI -> reply buffer (see below)
  2742. Return: AL = status
  2743.         00h successful
  2744.         else network error code
  2745. Desc:    restore a previously saved directory handle to reproduce an executing
  2746.       environment, possibly on a different execution site
  2747. Note:    this function is supported by Advanced NetWare 2.0+ and Alloy NTNX
  2748. SeeAlso: AH=E2h/SF=12h,AH=E2h/SF=17h
  2749.  
  2750. Format of request buffer:
  2751. Offset    Size    Description
  2752.  00h    WORD    0011h (length of following data)
  2753.  02h    BYTE    18h (subfunction "Restore Directory Handle")
  2754.  03h 16 BYTEs    save buffer
  2755.  
  2756. Format of reply buffer:
  2757. Offset    Size    Description
  2758.  00h    WORD    (call) 0002h (length of following results buffer)
  2759.  02h    BYTE    new directory handle
  2760.  03h    BYTE    effective rights (see AH=E2h/SF=03h)
  2761. --------N-21E2--SF19-------------------------
  2762. INT 21 - Novell NetWare - DIRECTORY SERVICES - SET DIRECTORY INFORMATION
  2763.     AH = E2h subfn 19h
  2764.     DS:SI -> request buffer (see below)
  2765.     ES:DI -> reply buffer (see below)
  2766. Return: AL = status (00h,9Bh,9Ch) (see AH=E2h/SF=00h)
  2767. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  2768. SeeAlso: AH=E2h/SF=02h,AH=E2h/SF=0Fh
  2769.  
  2770. Format of request buffer:
  2771. Offset    Size    Description
  2772.  00h    WORD    length of following data (max 10Bh)
  2773.  02h    BYTE    19h (subfunction "Set Directory Information")
  2774.  03h    BYTE    directory handle
  2775.  04h    DWORD    (big-endian) date and time of creation
  2776.  08h    DWORD    (big-endian) object ID of owner
  2777.  0Ch    BYTE    maximum directory rights (see AH=E2h/SF=03h)
  2778.  0Dh    BYTE    length of directory path
  2779.  0Eh  N BYTEs    directory path
  2780.  
  2781. Format of reply buffer:
  2782. Offset    Size    Description
  2783.  00h    WORD    (call) 0000h (no results returned)
  2784. --------N-21E2--SF1A-------------------------
  2785. INT 21 - Novell NetWare - FILE SERVER - GET PATH FROM DIRECTORY ENTRY
  2786.     AH = E2h subfn 1Ah
  2787.     DS:SI -> request buffer (see below)
  2788.     ES:DI -> reply buffer (see below)
  2789. Return: AL = status
  2790.         00h successful
  2791. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2792.       Alloy NTNX
  2793. SeeAlso: AH=E2h/SF=01h,AH=E2h/SF=06h,AH=E3h/SF=D7h
  2794.  
  2795. Format of request buffer:
  2796. Offset    Size    Description
  2797.  00h    WORD    0004h (length of following data)
  2798.  02h    BYTE    1Ah (subfunction "Get Path From Directory Entry")
  2799.  03h    BYTE    volume number (00h-1Fh)
  2800.  04h    WORD    (big-endian) directory entry number
  2801.  
  2802. Format of reply buffer:
  2803. Offset    Size    Description
  2804.  00h    WORD    (call) size of following results record (max 200h)
  2805.  02h 256 BYTEs    path
  2806. --------E-21E3-------------------------------
  2807. INT 21 - OS/286, OS/386 - ISSUE REAL INTERRUPT
  2808.     AH = E3h
  2809.     AL = interrupt number
  2810.     ???
  2811. Return: ???
  2812. Note:    protected mode only???
  2813. SeeAlso: AH=E1h"OS/286",INT 31/AX=0300h
  2814. --------T-21E3-------------------------------
  2815. INT 21 - DoubleDOS - ADD CHARACTER TO KEYBOARD BUFFER OF CURRENT JOB
  2816.     AH = E3h
  2817.     AL = character
  2818. Return: AL = 00h successful
  2819.          01h buffer full (128 characters)
  2820. SeeAlso: AH=E1h"DoubleDOS",AH=E2h"DoubleDOS",AH=E8h"DoubleDOS"
  2821. SeeAlso: AH=F3h"DoubleDOS"
  2822. --------N-21E3-------------------------------
  2823. INT 21 - Novell NetWare - CONNECTION CONTROL
  2824.     AH = E3h
  2825.     DS:SI -> request buffer (see below)
  2826.     ES:DI -> reply buffer (see below)
  2827. Return: AL = status
  2828.         00h successful
  2829.         else error code
  2830. Note:    supported by NetWare 4.0+, Advanced NetWare 1.0+, and Alloy NTNX
  2831. SeeAlso: AH=E3h/SF=0Ah,AH=E3h/SF=32h,AH=E3h/SF=64h,AH=E3h/SF=C8h
  2832.  
  2833. Format of request buffer:
  2834. Offset    Size    Description
  2835.  00h    WORD    length of following data
  2836.  02h    BYTE    subfunction number
  2837.         00h login
  2838.         01h change password
  2839.         02h map user to station set
  2840.         03h map object to number
  2841.         04h map number to object
  2842.         05h get station's logged information
  2843.         06h get station's root mask (obsolete)
  2844.         07h map group name to number
  2845.         08h map number to group name
  2846.         09h get memberset M of group G
  2847.     var    depends on subfunction
  2848. Notes:    the above subfunctions are not described in _NetWare_System_Calls--DOS_
  2849.     see separate entries below for other subfunctions
  2850.  
  2851. Format of reply buffer:
  2852. Offset    Size    Description
  2853.  00h    WORD    (call) length of following buffer space for results
  2854.     var    depends on subfunction
  2855.  
  2856. Format of object property:
  2857. Offset    Size    Description
  2858.  00h 1-16 BYTEs property name
  2859.   N    BYTE    flags
  2860.         bit 0: property is dynamic
  2861.         bit 1: property is a set rather than an item
  2862.  N+1    BYTE    security levels (see below)
  2863.     ???
  2864.  
  2865. Names of well-known properties:
  2866.  ACCOUNT_BALANCE
  2867.  ACCOUNT_SERVERS
  2868.  GROUP_MEMBERS
  2869.  GROUPS_I'M_IN
  2870.  IDENTIFICATION        user's name
  2871.  LOGIN_CONTROL
  2872.  NET_ADDRESS
  2873.  OPERATORS
  2874.  PASSWORD
  2875.  SECURITY_EQUALS
  2876.  
  2877. Values for security levels:
  2878.  00h    "anyone" everyone may access
  2879.  01h    "logged" only logged-in clients may access
  2880.  02h    "object" only clients logged-in with object's name, type, and password
  2881.  03h    "supervisor" only clients logged-in with supervisor privileges
  2882.  04h    "NetWare" only NetWare may access
  2883. Note:    the above values are stored in a nybble; the high half-byte is write
  2884.       access and the low half-byte is read access
  2885.  
  2886. Values for object type:
  2887.  0000h    unknown
  2888.  0001h    user
  2889.  0002h    user group
  2890.  0003h    print queue
  2891.  0004h    file server
  2892.  0005h    job server
  2893.  0006h    gateway
  2894.  0007h    print server
  2895.  0008h    archive queue
  2896.  0009h    archive server
  2897.  000Ah    job queue
  2898.  000Bh    administration
  2899.  0026h    remote bridge server
  2900.  0047h    advertising print server
  2901.  0048h-8000h reserved
  2902.  FFFFh    wild (used only for finding objects)
  2903. --------N-21E3--SF0A-------------------------
  2904. INT 21 - Novell NetWare - CONNECTION SERVICES - ENTER LOGIN AREA
  2905.     AH = E3h subfn 0Ah
  2906.     DS:SI -> request buffer (see below)
  2907.     ES:DI -> reply buffer (see below)
  2908. Return: AL = status
  2909.         00h successful
  2910. Desc:    change the login directory for the calling workstation
  2911. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2912.       Alloy NTNX
  2913. SeeAlso: AH=D7h,AH=E3h/SF=14h
  2914.  
  2915. Format of request buffer:
  2916. Offset    Size    Description
  2917.  00h    WORD    length of following data (max 102h)
  2918.  02h    BYTE    0Ah (subfunction "Enter Login Area")
  2919.  03h    BYTE    number of local drives
  2920.  04h    BYTE    length of subdirectory name (00h-FFh)
  2921.  05h  N BYTEs    name of subdirectory under SYS:LOGIN where to find the login
  2922.         utility
  2923.  
  2924. Format of reply buffer:
  2925. Offset    Size    Description
  2926.  00h    WORD    (call) 0000h (no data returned)
  2927. --------N-21E3--SF0C-------------------------
  2928. INT 21 U - Novell NetWare - VERIFY NETWORK SERIAL NUMBER
  2929.     AH = E3h subfn 0Ch
  2930.     DS:SI -> request buffer (see below)
  2931.     ES:DI -> reply buffer (see below)
  2932. Return: AL = status
  2933.         00h successful
  2934. Note:    if the network serial number to be verified is correct, the reply
  2935.       buffer will contain the corresponding application number
  2936. SeeAlso: AH=E3h/SF=12h
  2937.  
  2938. Format of request buffer:
  2939. Offset    Size    Description
  2940.  00h    WORD    0005h (length of following data)
  2941.  02h    BYTE    0Ch (subfunction "Verify Network Serial Number")
  2942.  03h    DWORD    (big-endian) network serial number to verify
  2943.  
  2944. Format of reply buffer:
  2945. Offset    Size    Description
  2946.  00h    WORD    (call) 0002h (size of following results buffer)
  2947.  02h    WORD    (big-endian) application number
  2948. --------N-21E3--SF0D-------------------------
  2949. INT 21 - Novell NetWare - MESSAGE SERVICES - LOG NETWORK MESSAGE
  2950.     AH = E3h subfn 0Dh
  2951.     DS:SI -> request buffer (see below)
  2952.     ES:DI -> reply buffer (see below)
  2953. Return: AL = status
  2954.         00h successful
  2955. Desc:    append a line to the default file server's NET$LOG.MSG file
  2956. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  2957.       Alloy NTNX
  2958. SeeAlso: AH=E1h/SF=09h
  2959.  
  2960. Format of request buffer:
  2961. Offset    Size    Description
  2962.  00h    WORD    length of following data (max 52h)
  2963.  02h    BYTE    0Dh (subfunction "Log Network Message")
  2964.  03h    BYTE    length of message (01h-50h)
  2965.  04h  N BYTEs    message (no control characters or characters > 7Eh)
  2966. --------N-21E3--SF0E-------------------------
  2967. INT 21 - Novell NetWare - FILE SERVER - GET DISK UTILIZATION
  2968.     AH = E3h subfn 0Eh
  2969.     DS:SI -> request buffer (see below)
  2970.     ES:DI -> reply buffer (see below)
  2971. Return: AL = status
  2972.         00h successful
  2973.         98h nonexistent volume
  2974.         F2h not permitted to read object
  2975. Notes:    this function is supported by Advanced NetWare 2.1+
  2976.     the caller must have bindery object read privileges
  2977. SeeAlso: AH=E3h/SF=11h,AH=E3h/SF=D6h,AH=E3h/SF=D9h,AH=E3h/SF=E6h,AH=E3h/SF=E9h
  2978.  
  2979. Format of request buffer:
  2980. Offset    Size    Description
  2981.  00h    WORD    0005h (length of following data)
  2982.  02h    BYTE    0Eh (subfunction "Get Disk Utilization")
  2983.  03h    BYTE    volume number (00h-1Fh)
  2984.  04h    DWORD    (big-endian) object ID
  2985.  
  2986. Format of reply buffer:
  2987. Offset    Size    Description
  2988.  00h    WORD    (call) 000Bh (size of following results buffer)
  2989.  02h    BYTE    volume number (00h-1Fh)
  2990.  03h    DWORD    (big-endian) object ID
  2991.  07h    WORD    (big-endian) directories used by object
  2992.  09h    WORD    (big-endian) files created by object
  2993.  0Bh    WORD    (big-endian) disk blocks used by object-created files
  2994. --------N-21E3--SF0F-------------------------
  2995. INT 21 - Novell NetWare - FILE SERVICES - SCAN FILE INFORMATION
  2996.     AH = E3h subfn 0Fh
  2997.     DS:SI -> request buffer (see below)
  2998.     ES:DI -> reply buffer (see below)
  2999. Return: AL = status
  3000.         00h successful
  3001.         89h not permitted to search directory
  3002.         FFh no more matching files
  3003. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3004. SeeAlso: AH=B6h,AH=E3h/SF=10h
  3005.  
  3006. Format of request buffer:
  3007. Offset    Size    Description
  3008.  00h    WORD    length of following data (max 105h)
  3009.  02h    BYTE    0Fh (subfunction "Scan File Information")
  3010.  03h    WORD    (big-endian) sequence number
  3011.         FFFFh on first call
  3012.  05h    BYTE    directory handle or 00h
  3013.  06h    BYTE    search attributes (see AX=4301h)
  3014.  07h    BYTE    length of filespec
  3015.  08h  N BYTEs    ASCIZ uppercase filespec
  3016.  
  3017. Format of reply buffer:
  3018. Offset    Size    Description
  3019.  00h    WORD    (call) 005Eh (size of following results buffer)
  3020.  02h    WORD    next sequence number (place in request buffer for next call)
  3021.  04h 14 BYTEs    ASCIZ filename
  3022.  12h    BYTE    file attributes (see AX=4301h for format)
  3023.  13h    BYTE    extended file attributes (see AH=B6h for format)
  3024.  14h    DWORD    (big-endian) file size in bytes
  3025.  18h    WORD    (big-endian) file's creation date (see AX=5700h for format)
  3026.  1Ah    WORD    (big-endian) date of last access (see AX=5700h for format)
  3027.  1Ch    DWORD    (big-endian) date and time of last update (see AH=E2h/SF=02h)
  3028.  20h    DWORD    (big-endian) object ID of owner
  3029.  24h    DWORD    (big-endian) date and time last archived (see AH=E2h/SF=02h)
  3030.  28h 55 BYTEs    reserved
  3031. Note:    the official documentation erroneously lists the field at offset 04h as
  3032.       15 bytes and thus shifts the remaining fields by one byte
  3033. --------N-21E3--SF10-------------------------
  3034. INT 21 - Novell NetWare - FILE SERVICES - SET FILE INFORMATION
  3035.     AH = E3h subfn 10h
  3036.     DS:SI -> request buffer (see below)
  3037.     ES:DI -> reply buffer (see below)
  3038. Return: AL = status
  3039.         00h successful
  3040. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3041.     the caller must have modify privileges on the directory containing the
  3042.       file
  3043. SeeAlso: AH=B6h,AH=E3h/SF=0Fh
  3044.  
  3045. Format of request buffer:
  3046. Offset    Size    Description
  3047.  00h    WORD    length of following data (max 151h)
  3048.  02h    BYTE    10h (subfunction "Set File Information")
  3049.  03h    BYTE    file attributes (see AX=4301h for format)
  3050.  04h    BYTE    extended file attributes (see AH=B6h for format)
  3051.  05h  4 BYTEs    reserved
  3052.  09h    WORD    (big-endian) file's creation date (see AX=5700h for format)
  3053.  0Bh    WORD    (big-endian) date of last access (see AX=5700h for format)
  3054.  0Dh    DWORD    (big-endian) date and time of last update (see AH=E2h/SF=02h)
  3055.  11h    DWORD    (big-endian) object ID of owner
  3056.  15h    DWORD    (big-endian) date and time last archived (see AH=E2h/SF=02h)
  3057.  19h 56 BYTEs    reserved
  3058.  51h    BYTE    directory handle or 00h
  3059.  52h    BYTE    search attributes (see AX=4301h for format)
  3060.  53h    BYTE    length of filename
  3061.  54h  N BYTEs    filename
  3062. Format of reply buffer:
  3063. Offset    Size    Description
  3064.  00h    WORD    (call) 0000h (no results returned)
  3065. --------N-21E3--SF11-------------------------
  3066. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER INFORMATION
  3067.     AH = E3h subfn 11h
  3068.     DS:SI -> request buffer (see below)
  3069.     ES:DI -> reply buffer (see below)
  3070. Return: AL = status
  3071.         00h successful
  3072. Desc:    determine the version of software installed on the file server and
  3073.       how it is configured
  3074. Note:    this function is supported by Advanced NetWare 2.1+
  3075. SeeAlso: AH=E3h/SF=0Eh,AE3h/SF=12h,AH=E3h/SF=CDh,AH=E3h/SF=D3h,AH=E3h/SF=E7h
  3076. SeeAlso: AH=E7h
  3077.  
  3078. Format of request buffer:
  3079. Offset    Size    Description
  3080.  00h    WORD    0001h (length of following data)
  3081.  02h    BYTE    11h (subfunction "Get File Server Information")
  3082.  
  3083. Format of reply buffer:
  3084. Offset    Size    Description
  3085.  00h    WORD    (call) 0080h (size of following results buffer)
  3086.  02h 48 BYTEs    server's name
  3087.  32h    BYTE    NetWare version
  3088.  33h    BYTE    NetWare subversion (0-99)
  3089.  34h    WORD    (big-endian) number of connections supported
  3090.  36h    WORD    (big-endian) number of connections in use
  3091.  38h    WORD    (big-endian) maximum connected volumes
  3092. ---Advanced NetWare 2.1+ ---
  3093.  3Ah    BYTE    operating system revision number
  3094.  3Bh    BYTE    fault tolerance (SFT) level
  3095.  3Ch    BYTE    TTS level
  3096.  3Dh    WORD    (big-endian) maximum simultaneously-used connections
  3097.  3Fh    BYTE    accounting version
  3098.  40h    BYTE    VAP version
  3099.  41h    BYTE    queueing version
  3100.  42h    BYTE    print server version
  3101.  43h    BYTE    virtual console version
  3102.  44h    BYTE    security restrictions level
  3103.  45h    BYTE    internetwork bridge version
  3104.  46h 60 BYTEs    reserved
  3105. --------N-21E3--SF12-------------------------
  3106. INT 21 - Novell NetWare - GET NETWORK SERIAL NUMBER
  3107.     AH = E3h subfn 12h
  3108.     AL = 00h
  3109.     BX = CX = DX = 0000h
  3110.     DS:SI -> request buffer (see below)
  3111.     ES:DI -> reply buffer (see below)
  3112. Return: AL = status
  3113.         00h successful
  3114. Desc:    return the serial number and application number for the software
  3115.       installed on the file server
  3116. Notes:    this function is supported by Advanced NetWare 2.1+
  3117.     reportedly, the workstation crashes if AL,BX,CX, and DX are not all
  3118.       zero
  3119. SeeAlso: AH=E3h/SF=0Ch,AH=E3h/SF=11h
  3120.  
  3121. Format of request buffer:
  3122. offset     size    description
  3123.  00h     WORD    0001h (length of following data)
  3124.  02h     BYTE    12h (subfunction "Get Serial Number")
  3125.  
  3126. Format of reply buffer:
  3127. offset     size    description
  3128.  00h     WORD    (call) 0006h (size of following results buffer)
  3129.  02h   4 BYTEs    (big-endian) NetWare server serial number
  3130.  06h   2 BYTEs    (big-endian) NetWare application serial number
  3131. --------N-21E3--SF13-------------------------
  3132. INT 21 - Novell NetWare - CONNECTION SERVICES - GET INTERNET ADDRESS
  3133.     AH = E3h subfn 13h
  3134.     DS:SI -> request buffer (see below)
  3135.     ES:DI -> reply buffer (see below)
  3136. Return: AL = status
  3137.         00h successful
  3138. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3139. SeeAlso: AH=DCh"NetWare",AH=E3h/SF=16h,AH=EEh"NetWare"
  3140.  
  3141. Format of request buffer:
  3142. Offset    Size    Description
  3143.  00h    WORD    0002h (length of following data)
  3144.  02h    BYTE    13h (subfunction "Get Internet Address")
  3145.  03h    BYTE    logical connection number (01h-64h)
  3146.  
  3147. Format of reply buffer:
  3148. Offset    Size    Description
  3149.  00h    WORD    (call) 000Ch (length of following results buffer)
  3150.  02h  4 BYTEs    network number
  3151.  06h  6 BYTEs    physical node address
  3152.  0Ch  2 BYTEs    socket number
  3153. --------N-21E3--SF14-------------------------
  3154. INT 21 - Novell NetWare - CONNECTION SERVICES - LOGIN TO FILE SERVER
  3155.     AH = E3h subfn 14h
  3156.     DS:SI -> request buffer (see below)
  3157.     ES:DI -> reply buffer (see below)
  3158. Return: AL = status
  3159.         00h successful
  3160. Desc:    this function retrieves a list indicating the connection numbers under
  3161.       which a bindery object is logged into the default file server
  3162. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3163. SeeAlso: AH=D7h"NetWare",AH=F1h"NetWare"
  3164.  
  3165. Format of request buffer:
  3166. Offset    Size    Description
  3167.  00h    WORD    length of following data (max B3h)
  3168.  02h    BYTE    14h (subfunction "Login To File Server")
  3169.  03h    WORD    (big-endian) type of object
  3170.  05h    BYTE    length of object's name (01h-2Fh)
  3171.  06h  N BYTEs    object's name
  3172.     BYTE    length of password
  3173.       N BYTEs    password
  3174.  
  3175. Format of reply buffer:
  3176. Offset    Size    Description
  3177.  00h    WORD    (call) 0000h (no data returned)
  3178. --------N-21E3--SF15-------------------------
  3179. INT 21 - Novell NetWare - CONNECTION SERVICES - GET OBJECT CONNECTION NUMBERS
  3180.     AH = E3h subfn 15h
  3181.     DS:SI -> request buffer (see below)
  3182.     ES:DI -> reply buffer (see below)
  3183. Return: AL = status
  3184.         00h successful
  3185. Desc:    this function retrieves a list indicating the connection numbers under
  3186.       which a bindery object is logged into the default file server
  3187. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3188. SeeAlso: AH=DCh"NetWare",AH=E3h/SF=16h
  3189.  
  3190. Format of request buffer:
  3191. Offset    Size    Description
  3192.  00h    WORD    length of following data (max 33h)
  3193.  02h    BYTE    15h (subfunction "Get Object Connection Numbers")
  3194.  03h    WORD    (big-endian) type of object
  3195.  05h    BYTE    length of object's name (01h-2Fh)
  3196.  06h  N BYTEs    object's name
  3197.  
  3198. Format of reply buffer:
  3199. Offset    Size    Description
  3200.  00h    WORD    (call) length of following results buffer (max 65h)
  3201.  02h    BYTE    number of connections
  3202.  03h  N BYTEs    connection list
  3203. --------N-21E3--SF16-------------------------
  3204. INT 21 - Novell NetWare - CONNECTION SERVICES - GET CONNECTION INFORMATION
  3205.     AH = E3h subfn 16h
  3206.     DS:SI -> request buffer (see below)
  3207.     ES:DI -> reply buffer (see below)
  3208. Return: AL = status
  3209.         00h successful
  3210. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3211. SeeAlso: AH=D7h,AH=DCh"NetWare",AH=E3h/SF=14h
  3212.  
  3213. Format of request buffer:
  3214. Offset    Size    Description
  3215.  00h    WORD    0002h (length of following data)
  3216.  02h    BYTE    16h (subfunction "Get Connection Information")
  3217.  03h    BYTE    logical connection number (01h-64h)
  3218.  
  3219. Format of reply buffer:
  3220. Offset    Size    Description
  3221.  00h    WORD    (call) 003Eh (length of following results buffer)
  3222.  02h    DWORD    (big-endian) object ID for object logged in on the connection
  3223.         00000000h if no object logged in
  3224.  06h    WORD    (big-endian) type of object
  3225.  08h 48 BYTEs    name of object
  3226.  38h  7 BYTEs    login time (see below)
  3227. Note:    much of the Novell documentation incorrectly states the reply buffer
  3228.       length as 3Fh instead of 40h, which corresponds to a results length
  3229.       of 3Dh (61) bytes instead of the correct 3Eh (62) bytes
  3230.  
  3231. Format of login time:
  3232. Offset    Size    Description
  3233.  00h    BYTE    year (80-99 = 1980-1999, 00-79 = 2000-2079)
  3234.  01h    BYTE    month (1-12)
  3235.  02h    BYTE    day (1-31)
  3236.  03h    BYTE    hour (0-23)
  3237.  04h    BYTE    minute (0-59)
  3238.  05h    BYTE    second (0-59)
  3239.  06h    BYTE    day of week (0 = Sunday)
  3240. --------N-21E3--SF32-------------------------
  3241. INT 21 - Novell NetWare - BINDERY SERVICES - CREATE BINDERY OBJECT
  3242.     AH = E3h subfn 32h
  3243.     DS:SI -> request buffer (see below)
  3244.     ES:DI -> reply buffer (see below)
  3245. Return: AL = status (see below)
  3246. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3247. SeeAlso: AH=E3h/SF=33h,AH=E3h/SF=34h,AH=E3h/SF=38h,AH=E3h/SF=39h
  3248.  
  3249. Values for status:
  3250.  00h    successful
  3251.  96h    server out of memory
  3252.  EEh    object already exists
  3253.  EFh    invalid name
  3254.  F0h    wildcard not allowed
  3255.  F1h    invalid bindery security level
  3256.  F3h    not permitted to rename object
  3257.  F4h    not permitted to delete objects
  3258.  F5h    not permitted to create objects
  3259.  FCh    no such object
  3260.  FEh    server bindery locked
  3261.  FFh    bindery failure
  3262.  
  3263. Format of request buffer:
  3264. Offset    Size    Description
  3265.  00h    WORD    length of following data (max 35h)
  3266.  02h    BYTE    32h (subfunction "Create Bindery Object")
  3267.  03h    BYTE    object flag
  3268.         00h static
  3269.         01h dynamic
  3270.  04h    BYTE    object security levels
  3271.  05h    WORD    (big-endian) type of object
  3272.  07h    BYTE    length of object's name
  3273.  08h  N BYTEs    object's name
  3274.  
  3275. Format of reply buffer:
  3276. Offset    Size    Description
  3277.  00h    WORD    0000h (no data returned)
  3278. --------N-21E3--SF33-------------------------
  3279. INT 21 - Novell NetWare - BINDERY SERVICES - DELETE BINDERY OBJECT
  3280.     AH = E3h subfn 33h
  3281.     DS:SI -> request buffer (see below)
  3282.     ES:DI -> reply buffer (see below)
  3283. Return: AL = status (see AH=E3h/SF=32h)
  3284. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3285. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=34h
  3286.  
  3287. Format of request buffer:
  3288. Offset    Size    Description
  3289.  00h    WORD    length of following data (max 33h)
  3290.  02h    BYTE    33h (subfunction "Delete Bindery Object")
  3291.  03h    WORD    (big-endian) type of object
  3292.  05h    BYTE    length of object's name (01h-2Fh)
  3293.  06h  N BYTEs    object's name
  3294.  
  3295. Format of reply buffer:
  3296. Offset    Size    Description
  3297.  00h    WORD    (call) 0000h (no data returned)
  3298. --------N-21E3--SF34-------------------------
  3299. INT 21 - Novell NetWare - BINDERY SERVICES - RENAME BINDERY OBJECT
  3300.     AH = E3h subfn 34h
  3301.     DS:SI -> request buffer (see below)
  3302.     ES:DI -> reply buffer (see below)
  3303. Return: AL = status (see AH=E3h/SF=32h)
  3304. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3305. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=33h
  3306.  
  3307. Format of request buffer:
  3308. Offset    Size    Description
  3309.  00h    WORD    length of following data (max 63h)
  3310.  02h    BYTE    34h (subfunction "Rename Bindery Object")
  3311.  03h    WORD    (big-endian) type of object
  3312.  05h    BYTE    length of object's name (01h-2Fh)
  3313.  06h  N BYTEs    object's name
  3314.     BYTE    length of new name (01h-2Fh)
  3315.       N BYTEs    new name
  3316.  
  3317. Format of reply buffer:
  3318. Offset    Size    Description
  3319.  00h    WORD    (call) 0000h (no data returned)
  3320. --------N-21E3--SF35-------------------------
  3321. INT 21 - Novell NetWare - BINDERY SERVICES - GET BINDERY OBJECT ID
  3322.     AH = E3h subfn 35h
  3323.     DS:SI -> request buffer (see below)
  3324.     ES:DI -> reply buffer (see below)
  3325. Return: AL = status
  3326.         00h successful
  3327.         96h server out of memory
  3328.         FCh no such object
  3329.         FEh server bindery locked
  3330.         FFh bindery failure
  3331. Notes:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3332.     the requesting workstation must be logged into the file server with
  3333.       read access to the bindery object
  3334. SeeAlso: AH=E3h/SF=36h,AH=E3h/SF=44h
  3335.  
  3336. Format of request buffer:
  3337. Offset    Size    Description
  3338.  00h    WORD    length of following data (max 33h)
  3339.  02h    BYTE    35h (subfunction "Get Bindery Object ID")
  3340.  03h    WORD    (big-endian) type of object
  3341.  05h    BYTE    length of object's name
  3342.  06h  N BYTEs    object's name
  3343.  
  3344. Format of reply buffer:
  3345. Offset    Size    Description
  3346.  00h    WORD    (call) 0036h (length of following buffer space)
  3347.  02h    DWORD    (big-endian) object ID
  3348.  06h    WORD    (big-endian) type of object
  3349.  08h 48 BYTEs    object name
  3350. --------N-21E3--SF36-------------------------
  3351. INT 21 - Novell NetWare - BINDERY SERVICES - GET BINDERY OBJECT NAME
  3352.     AH = E3h subfn 36h
  3353.     DS:SI -> request buffer (see below)
  3354.     ES:DI -> reply buffer (see below)
  3355. Return: AL = status (see below)
  3356. Notes:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3357.     the requesting workstation must be logged into the file server with
  3358.       read access to the bindery object
  3359. SeeAlso: AH=E3h/SF=35h,AH=E3h/SF=44h
  3360.  
  3361. Values for status:
  3362.  00h    successful
  3363.  96h    server out of memory
  3364.  EFh    invalid name
  3365.  F0h    wildcard not allowed
  3366.  FCh    no such object
  3367.  FEh    server bindery locked
  3368.  FFh    bindery failure
  3369.  
  3370. Format of request buffer:
  3371. Offset    Size    Description
  3372.  00h    WORD    0005h (length of following data)
  3373.  02h    BYTE    36h (subfunction "Get Bindery Object Name")
  3374.  03h    DWORD    (big-endian) object ID
  3375.  
  3376. Format of reply buffer:
  3377. Offset    Size    Description
  3378.  00h    WORD    (call) 0036h (length of following buffer space)
  3379.  02h    DWORD    (big-endian) object ID
  3380.  06h    WORD    (big-endian) type of object
  3381.  08h 48 BYTEs    object name
  3382. --------N-21E3--SF37-------------------------
  3383. INT 21 - Novell NetWare - BINDERY SERVICES - SCAN BINDERY OBJECT
  3384.     AH = E3h subfn 37h
  3385.     DS:SI -> request buffer (see below)
  3386.     ES:DI -> reply buffer (see below)
  3387. Return: AL = status (see AH=E3h/SF=36h)
  3388. Notes:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3389.     the requesting workstation must be logged into the file server with
  3390.       read access to the bindery object
  3391. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=33h,AH=E3h/SF=38h,AH=E3h/SF=3Ch
  3392.  
  3393. Format of request buffer:
  3394. Offset    Size    Description
  3395.  00h    WORD    length of following data (max 37h)
  3396.  02h    BYTE    37h (subfunction "Scan Bindery Object")
  3397.  03h    DWORD    (big-endian) last object ID
  3398.  07h    WORD    (big-endian) type of object
  3399.  09h    BYTE    length of object's name
  3400.  0Ah  N BYTEs    object's name
  3401.  
  3402. Format of reply buffer:
  3403. Offset    Size    Description
  3404.  00h    WORD    (call) 0039h (length of following buffer space)
  3405.  02h    DWORD    (big-endian) object ID
  3406.         FFFFFFFFh for first call
  3407.  06h    WORD    (big-endian) type of object
  3408.  08h 48 BYTEs    object name (counted string)
  3409.  38h    BYTE    object flag (00h static, 01h dynamic)
  3410.  39h    BYTE    object's security levels
  3411.  3Ah    BYTE    object properties flag (00h no, FFh yes)
  3412. --------N-21E3--SF38-------------------------
  3413. INT 21 - Novell NetWare - BINDERY SERVICES - CHANGE BINDERY OBJECT SECURITY
  3414.     AH = E3h subfn 38h
  3415.     DS:SI -> request buffer (see below)
  3416.     ES:DI -> reply buffer (see below)
  3417. Return: AL = status
  3418.         00h successful
  3419.         96h server out of memory
  3420.         F0h wildcard not allowed
  3421.         F1h invalid bindery security level
  3422.         FBh no such property
  3423.         FCh no such object
  3424.         FEh server bindery locked
  3425.         FFh bindery failure
  3426. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3427. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=3Bh
  3428.  
  3429. Format of request buffer:
  3430. Offset    Size    Description
  3431.  00h    WORD    length of following data (max 34h)
  3432.  02h    BYTE    38h (subfunction "Change Bindery Object Security")
  3433.  03h    BYTE    new security levels
  3434.  04h    WORD    (big-endian) type of object
  3435.  06h    BYTE    length of object's name (01h-2Fh)
  3436.  07h  N BYTEs    object name
  3437.  
  3438. Format of reply buffer:
  3439. Offset    Size    Description
  3440.  00h    WORD    (call) 0000h (no data returned)
  3441. --------N-21E3--SF39-------------------------
  3442. INT 21 - Novell NetWare - BINDERY SERVICES - CREATE PROPERTY
  3443.     AH = E3h subfn 39h
  3444.     DS:SI -> request buffer (see below)
  3445.     ES:DI -> reply buffer (see below)
  3446. Return: AL = status (see below)
  3447. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3448. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=3Bh
  3449.  
  3450. Values for status:
  3451.  00h    successful
  3452.  96h    server out of memory
  3453.  EDh    property already exists
  3454.  EFh    invalid name
  3455.  F0h    wildcard not allowed
  3456.  F1h    invalid bindery security level
  3457.  F6h    not permitted to delete properties
  3458.  F7h    not permitted to create properties
  3459.  FBh    no such property
  3460.  FCh    no such object
  3461.  FEh    server bindery locked
  3462.  FFh    bindery failure
  3463.  
  3464. Format of request buffer:
  3465. Offset    Size    Description
  3466.  00h    WORD    length of following data (max 45h)
  3467.  02h    BYTE    39h (subfunction "Create Property")
  3468.  03h    WORD    (big-endian) type of object
  3469.  05h    BYTE    length of object's name (01h-2Fh)
  3470.  06h  N BYTEs    object's name
  3471.     BYTE    property flags
  3472.     BYTE    property security levels
  3473.     BYTE    length of property's name (01h-0Fh)
  3474.       N BYTEs    property's name
  3475.  
  3476. Format of reply buffer:
  3477. Offset    Size    Description
  3478.  00h    WORD    (call) 0000h (no data returned)
  3479. --------N-21E3--SF3A-------------------------
  3480. INT 21 - Novell NetWare - BINDERY SERVICES - DELETE PROPERTY
  3481.     AH = E3h subfn 3Ah
  3482.     DS:SI -> request buffer (see below)
  3483.     ES:DI -> reply buffer (see below)
  3484. Return: AL = status (see AH=E3h/SF=39h)
  3485. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3486. SeeAlso: AH=E3h/SF=32h,AH=E3h/SF=39h
  3487.  
  3488. Format of request buffer:
  3489. Offset    Size    Description
  3490.  00h    WORD    length of following data (max 43h)
  3491.  02h    BYTE    3Ah (subfunction "Delete Property")
  3492.  03h    WORD    (big-endian) type of object
  3493.  05h    BYTE    length of object's name (01h-2Fh)
  3494.  06h  N BYTEs    object's name
  3495.     BYTE    length of property's name (01h-0Fh)
  3496.       N BYTEs    property's name
  3497.  
  3498. Format of reply buffer:
  3499. Offset    Size    Description
  3500.  00h    WORD    (call) 0000h (no data returned)
  3501. --------N-21E3--SF3B-------------------------
  3502. INT 21 - Novell NetWare - BINDERY SERVICES - CHANGE PROPERTY SECURITY
  3503.     AH = E3h subfn 3Bh
  3504.     DS:SI -> request buffer (see below)
  3505.     ES:DI -> reply buffer (see below)
  3506. Return: AL = status
  3507.         00h successful
  3508.         96h server out of memory
  3509.         F0h wildcard not allowed
  3510.         F1h invalid bindery security level
  3511.         FBh no such property
  3512.         FCh no such object
  3513.         FEh server bindery locked
  3514.         FFh bindery failure
  3515. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3516. SeeAlso: AH=E3h/SF=38h
  3517.  
  3518. Format of request buffer:
  3519. Offset    Size    Description
  3520.  00h    WORD    length of following data (max 44h)
  3521.  02h    BYTE    3Bh (subfunction "Change Property Security")
  3522.  03h    WORD    (big-endian) type of object
  3523.  05h    BYTE    length of object's name (01h-2Fh)
  3524.  06h  N BYTEs    object name
  3525.     BYTE    new property security levels
  3526.     BYTE    length of property's name
  3527.       N BYTEs    property name
  3528.  
  3529. Format of reply buffer:
  3530. Offset    Size    Description
  3531.  00h    WORD    (call) 0000h (no data returned)
  3532. --------N-21E3--SF3C-------------------------
  3533. INT 21 - Novell NetWare - BINDERY SERVICES - SCAN PROPERTY
  3534.     AH = E3h subfn 3Ch
  3535.     DS:SI -> request buffer (see below)
  3536.     ES:DI -> reply buffer (see below)
  3537. Return: AL = status (see below)
  3538. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3539. SeeAlso: AH=E3h/SF=37h,AH=E3h/SF=3Bh
  3540.  
  3541. Values for status:
  3542.  00h    successful
  3543.  96h    server out of memory
  3544.  F1h    invalid bindery security level
  3545.  FBh    no such property
  3546.  FCh    no such object
  3547.  FEh    server bindery locked
  3548.  FFh    bindery failure
  3549.  
  3550. Format of request buffer:
  3551. Offset    Size    Description
  3552.  00h    WORD    length of following data (max 47h)
  3553.  02h    BYTE    3Ch (subfunction "Scan Property")
  3554.  03h    WORD    (big-endian) type of object
  3555.  05h    BYTE    length of object's name (01h-2Fh)
  3556.  06h  N BYTEs    object name
  3557.     DWORD    (big-endian) sequence number
  3558.         FFFFFFFFh for first call
  3559.     BYTE    length of property's name (01h-0Fh)
  3560.       N BYTEs    property's name
  3561.  
  3562. Format of reply buffer:
  3563. Offset    Size    Description
  3564.  00h    WORD    (call) 0018h (length of following results buffer)
  3565.  02h 16 BYTEs    property name
  3566.  12h    BYTE    property flags
  3567.  13h    BYTE    property security levels
  3568.  14h    DWORD    (big-endian) sequence number
  3569.  18h    BYTE    property value flag (00h no, FFh yes)
  3570.  19h    BYTE    more properties (00h no, FFh yes)
  3571. --------N-21E3--SF3D-------------------------
  3572. INT 21 - Novell NetWare - BINDERY SERVICES - READ PROPERTY VALUE
  3573.     AH = E3h subfn 3Dh
  3574.     DS:SI -> request buffer (see below)
  3575.     ES:DI -> reply buffer (see below)
  3576. Return: AL = status (see below)
  3577. Desc:    retrieve one 128-byte segment of the specified property's value
  3578. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3579. SeeAlso: AH=E3h/SF=39h,AH=E3h/SF=3Ch,AH=E3h/SF=3Eh
  3580.  
  3581. Values for status:
  3582.  00h    successful
  3583.  96h    server out of memory
  3584.  E8h    not item property
  3585.  ECh    no such segment
  3586.  F0h    wildcard not allowed
  3587.  F1h    invalid bindery security level
  3588.  F8h    not permitted to write property
  3589.  F9h    not permitted to read property
  3590.  FBh    no such property
  3591.  FCh    no such object
  3592.  FEh    server bindery locked
  3593.  FFh    bindery failure
  3594.  
  3595. Format of request buffer:
  3596. Offset    Size    Description
  3597.  00h    WORD    length of following data (max 44h)
  3598.  02h    BYTE    3Dh (subfunction "Read Property Value")
  3599.  03h    WORD    (big-endian) type of object
  3600.  05h    BYTE    length of object's name (01h-2Fh)
  3601.  06h  N BYTEs    object name
  3602.     BYTE    segment number (01h on first call, increment until done)
  3603.     BYTE    length of property's name (01h-0Fh)
  3604.       N BYTEs    property name
  3605.  
  3606. Format of reply buffer:
  3607. Offset    Size    Description
  3608.  00h    WORD    (call) 0082h (length of following results buffer)
  3609.  02h 128 BYTEs    property's value
  3610.  82h    BYTE    more segments (00h no, FFh yes)
  3611.  83h    BYTE    property's flags
  3612. --------N-21E3--SF3E-------------------------
  3613. INT 21 - Novell NetWare - BINDERY SERVICES - WRITE PROPERTY VALUE
  3614.     AH = E3h subfn 3Eh
  3615.     DS:SI -> request buffer (see below)
  3616.     ES:DI -> reply buffer (see below)
  3617. Return: AL = status (see AH=E3h/SF=3Dh)
  3618. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3619. SeeAlso: AH=E3h/SF=39h,AH=E3h/SF=3Ch,AH=E3h/SF=3Eh
  3620.  
  3621. Format of request buffer:
  3622. Offset    Size    Description
  3623.  00h    WORD    length of following data (max C5h)
  3624.  02h    BYTE    3Eh (subfunction "Write Property Value")
  3625.  03h    WORD    (big-endian) type of object
  3626.  05h    BYTE    length of object's name (01h-2Fh)
  3627.  06h  N BYTEs    object name
  3628.     BYTE    segment number (01h on first call, increment until done)
  3629.     BYTE    erase remaining segments (00h no, FFh yes)
  3630.     BYTE    length of property's name (01h-0Fh)
  3631.       N BYTEs    property name
  3632.     128 BYTEs    property value segment
  3633.  
  3634. Format of reply buffer:
  3635. Offset    Size    Description
  3636.  00h    WORD    (call) 0000h (no data returned)
  3637. --------N-21E3--SF3F-------------------------
  3638. INT 21 - Novell NetWare - BINDERY SERVICES - VERIFY BINDERY OBJECT PASSWORD
  3639.     AH = E3h subfn 3Fh
  3640.     DS:SI -> request buffer (see below)
  3641.     ES:DI -> reply buffer (see below)
  3642. Return: AL = status (see below)
  3643. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3644. SeeAlso: AH=E3h/SF=40h
  3645.  
  3646. Values for status:
  3647.  00h    successful
  3648.  96h    server out of memory
  3649.  F0h    wildcard not allowed
  3650.  FBh    no such property
  3651.  FCh    no such object
  3652.  FEh    server bindery locked
  3653.  FFh    bindery failure: no such object, bad password, no password for object,
  3654.             or invalid old password
  3655.  
  3656. Format of request buffer:
  3657. Offset    Size    Description
  3658.  00h    WORD    length of following data (max 133h)
  3659.  02h    BYTE    3Fh (subfunction "Verify Bindery Object Password")
  3660.  03h    WORD    (big-endian) type of object
  3661.  05h    BYTE    length of object's name (01h-2Fh)
  3662.  06h  N BYTEs    object name
  3663.     BYTE    length of password (00h-7Fh)
  3664.       N BYTEs    password
  3665.  
  3666. Format of reply buffer:
  3667. Offset    Size    Description
  3668.  00h    WORD    (call) 0000h (no data returned)
  3669. --------N-21E3--SF40-------------------------
  3670. INT 21 - Novell NetWare - BINDERY SERVICES - CHANGE BINDERY OBJECT PASSWORD
  3671.     AH = E3h subfn 40h
  3672.     DS:SI -> request buffer (see below)
  3673.     ES:DI -> reply buffer (see below)
  3674. Return: AL = status (see AH=E3h/SF=3Fh)
  3675. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3676. SeeAlso: AH=E3h/SF=3Fh,AH=E3h/SF=41h
  3677.  
  3678. Format of request buffer:
  3679. Offset    Size    Description
  3680.  00h    WORD    length of following data (max 133h)
  3681.  02h    BYTE    40h (subfunction "Change Bindery Object Password")
  3682.  03h    WORD    (big-endian) type of object
  3683.  05h    BYTE    length of object's name (01h-2Fh)
  3684.  06h  N BYTEs    object name
  3685.     BYTE    length of old password (00h-7Fh)
  3686.       N BYTEs    old password
  3687.     BYTE    length of new password (00h-7Fh)
  3688.       N BYTEs    new password
  3689.  
  3690. Format of reply buffer:
  3691. Offset    Size    Description
  3692.  00h    WORD    (call) 0000h (no data returned)
  3693. --------N-21E3--SF41-------------------------
  3694. INT 21 - Novell NetWare - BINDERY SERVICES - ADD BINDERY OBJECT TO SET
  3695.     AH = E3h subfn 41h
  3696.     DS:SI -> request buffer (see below)
  3697.     ES:DI -> reply buffer (see below)
  3698. Return: AL = status (see below)
  3699. Desc:    add the specified object to a set property
  3700. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3701. SeeAlso: AH=E3h/SF=40h,AH=E3h/SF=42h,AH=E3h/SF=43h
  3702.  
  3703. Values for status:
  3704.  00h    successful
  3705.  96h    server out of memory
  3706.  E9h    member already exists
  3707.  EAh    member does not exist
  3708.  EBh    not a group property
  3709.  F0h    wildcard not allowed
  3710.  F8h    can't write property
  3711.  F9h    not permitted to read property
  3712.  FBh    no such property
  3713.  FCh    no such object
  3714.  FEh    server bindery locked
  3715.  FFh    bindery failure
  3716.  
  3717. Format of request buffer:
  3718. Offset    Size    Description
  3719.  00h    WORD    length of following data (max 75h)
  3720.  02h    BYTE    41h (subfunction "Add Bindery Object to Set")
  3721.  03h    WORD    (big-endian) type of object
  3722.  05h    BYTE    length of object's name
  3723.  06h  N BYTEs    object name
  3724.     BYTE    length of property name (01h-0Fh)
  3725.       N BYTEs    property name
  3726.     WORD    (big-endian) type of member object
  3727.     BYTE    length of member object's name
  3728.       N BYTEs    member object's name
  3729.  
  3730. Format of reply buffer:
  3731. Offset    Size    Description
  3732.  00h    WORD    (call) 0000h (no data returned)
  3733. --------N-21E3--SF42-------------------------
  3734. INT 21 - Novell NetWare - BINDERY SERVICES - DELETE BINDERY OBJECT FROM SET
  3735.     AH = E3h subfn 42h
  3736.     DS:SI -> request buffer (see below)
  3737.     ES:DI -> reply buffer (see below)
  3738. Return: AL = status (see AH=E3h/SF=41h)
  3739. Desc:    delete the specified object from a set property
  3740. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3741. SeeAlso: AH=E3h/SF=40h,AH=E3h/SF=42h,AH=E3h/SF=43h
  3742.  
  3743. Format of request buffer:
  3744. Offset    Size    Description
  3745.  00h    WORD    length of following data (max 75h)
  3746.  02h    BYTE    42h (subfunction "Delete Bindery Object from Set")
  3747.  03h    WORD    (big-endian) type of object
  3748.  05h    BYTE    length of object's name
  3749.  06h  N BYTEs    object name
  3750.     BYTE    length of property name (01h-0Fh)
  3751.       N BYTEs    property name
  3752.     WORD    (big-endian) type of member object
  3753.     BYTE    length of member object's name
  3754.       N BYTEs    member object's name
  3755.  
  3756. Format of reply buffer:
  3757. Offset    Size    Description
  3758.  00h    WORD    (call) 0000h (no data returned)
  3759. --------N-21E3--SF43-------------------------
  3760. INT 21 - Novell NetWare - BINDERY SERVICES - IS BINDERY OBJECT IN SET
  3761.     AH = E3h subfn 43h
  3762.     DS:SI -> request buffer (see below)
  3763.     ES:DI -> reply buffer (see below)
  3764. Return: AL = status (see AH=E3h/SF=41h)
  3765. Desc:    determine whether the specified object is a member of the given set
  3766.       property
  3767. Notes:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3768.     the caller must have read access to the property
  3769. SeeAlso: AH=E3h/SF=41h,AH=E3h/SF=42h
  3770.  
  3771. Format of request buffer:
  3772. Offset    Size    Description
  3773.  00h    WORD    length of following data (max 75h)
  3774.  02h    BYTE    43h (subfunction "Is Bindery Object In Set")
  3775.  03h    WORD    (big-endian) type of object
  3776.  05h    BYTE    length of object's name
  3777.  06h  N BYTEs    object's name
  3778.     BYTE    length of property's name
  3779.       N BYTEs    property's name
  3780.     WORD    (big-endian) type of member object
  3781.     BYTE    length of member object's name
  3782.       N BYTEs    member object's name
  3783.  
  3784. Format of reply buffer:
  3785. Offset    Size    Description
  3786.  00h    WORD    (call) 0000h (no data returned)
  3787. --------N-21E3--SF44-------------------------
  3788. INT 21 - Novell NetWare - BINDERY SERVICES - CLOSE BINDERY
  3789.     AH = E3h subfn 44h
  3790.     DS:SI -> request buffer (see below)
  3791.     ES:DI -> reply buffer (see below)
  3792. Return: AL = status
  3793.         00h successful
  3794. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3795. SeeAlso: AH=E3h/SF=45h
  3796.  
  3797. Format of request buffer:
  3798. Offset    Size    Description
  3799.  00h    WORD    0001h (length of following data)
  3800.  02h    BYTE    44h (subfunction "Close Bindery")
  3801.  
  3802. Format of reply buffer:
  3803. Offset    Size    Description
  3804.  00h    WORD    (call) 0000h (no data returned)
  3805. --------N-21E3--SF45-------------------------
  3806. INT 21 - Novell NetWare - BINDERY SERVICES - OPEN BINDERY
  3807.     AH = E3h subfn 45h
  3808.     DS:SI -> request buffer (see below)
  3809.     ES:DI -> reply buffer (see below)
  3810. Return: AL = status
  3811.         00h successful
  3812. Notes:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3813.     the bindery may only be opened by the supervisor or an object with
  3814.       equivalent privileges
  3815. SeeAlso: AH=E3h/SF=44h
  3816.  
  3817. Format of request buffer:
  3818. Offset    Size    Description
  3819.  00h    WORD    0001h (length of following data)
  3820.  02h    BYTE    45h (subfunction "Open Bindery")
  3821.  
  3822. Format of reply buffer:
  3823. Offset    Size    Description
  3824.  00h    WORD    (call) 0000h (no data returned)
  3825. --------N-21E3--SF46-------------------------
  3826. INT 21 - Novell NetWare - BINDERY SERVICES - GET BINDERY ACCESS LEVEL
  3827.     AH = E3h subfn 46h
  3828.     DS:SI -> request buffer (see below)
  3829.     ES:DI -> reply buffer (see below)
  3830. Return: AL = status
  3831.         00h successful
  3832. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3833.  
  3834. Format of request buffer:
  3835. Offset    Size    Description
  3836.  00h    WORD    0001h (length of following data)
  3837.  02h    BYTE    46h (subfunction "Get Bindery Access Level")
  3838.  
  3839. Format of reply buffer:
  3840. Offset    Size    Description
  3841.  00h    WORD    0005h (length of following buffer)
  3842.  02h    BYTE    security levels
  3843.  03h    DWORD    (big-endian) object ID
  3844. --------N-21E3--SF47-------------------------
  3845. INT 21 - Novell NetWare - DIRECTORY SERVICES - SCAN BINDERY OBJ TRUSTEE PATHS
  3846.     AH = E3h subfn 47h
  3847.     DS:SI -> request buffer (see below)
  3848.     ES:DI -> reply buffer (see below)
  3849. Return: AL = status
  3850.         00h successful
  3851.         96h server out of memory
  3852.         F0h wildcard not allowed
  3853.         F1h invalid bindery security level
  3854.         FCh no such object
  3855.         FEh server bindery locked
  3856.         FFh bindery failure
  3857. Desc:    iterate through the directories to which an object is a trustee
  3858. Note:    this function is supported by Advanced NetWare 1.0+ and Alloy NTNX
  3859. SeeAlso: AH=E2h/SF=0Ch,AH=E2h/SF=0Dh,AH=E2h/SF=0Eh
  3860.  
  3861. Format of request buffer:
  3862. Offset    Size    Description
  3863.  00h    WORD    0008h (length of following data)
  3864.  02h    BYTE    47h (subfunction "Scan Bindery Object Trustee Paths")
  3865.  03h    BYTE    volume number (00h-1Fh)
  3866.  04h    WORD    (big-endian) last sequence number (FFFFh on first call)
  3867.  06h    DWORD    (big-endian) object ID
  3868.  
  3869. Format of reply buffer:
  3870. Offset    Size    Description
  3871.  00h    WORD    (call) length of following results buffer (max 107h)
  3872.  02h    WORD    (big-endian) next sequence number
  3873.  04h    DWORD    (big-endian) object ID
  3874.  08h    BYTE    trustee directory rights (see AH=E2h/SF=03h)
  3875.  09h    BYTE    length of trustee path
  3876.  0Ah  N BYTEs    trustee path
  3877. --------N-21E3--SF64-------------------------
  3878. INT 21 - Novell NetWare - QUEUE SERVICES - CREATE QUEUE
  3879.     AH = E3h subfn 64h
  3880.     DS:SI -> request buffer (see below)
  3881.     ES:DI -> reply buffer (see below)
  3882. Return: AL = status (00h,96h,99h,9Bh,9Ch,EDh-F1h,F5h,F7h,FCh,FEh,FFh)
  3883.         (see below)
  3884. Notes:    this function is supported by Advanced NetWare 2.1+
  3885.     caller must be on a workstation with supervisor privileges
  3886. SeeAlso: AH=E3h/SF=65h,AH=E3h/SF=66h,AH=E3h/SF=68h,AH=E3h/SF=6Bh
  3887.  
  3888. Values for status:
  3889.  00h    successful
  3890.  96h    server out of memory
  3891.  99h    directory full
  3892.  9Bh    invalid directory handle
  3893.  9Ch    invalid path
  3894.  D0h    queue error
  3895.  D1h    no such queue
  3896.  D2h    no server for queue
  3897.  D3h    no queue rights
  3898.  D4h    queue full
  3899.  D5h    no queue job
  3900.  D6h    no job rights
  3901.  D7h    queue servicing error
  3902.  D9h    station is not a server
  3903.  DAh    queue halted
  3904.  DBh    too many queue servers
  3905.  EDh    property already exists
  3906.  EEh    object already exists
  3907.  EFh    invalid name
  3908.  F0h    wildcard not allowed
  3909.  F1h    invalid bindery security level
  3910.  F5h    not permitted to create object
  3911.  F7h    not permitted to create property
  3912.  FCh    no such object
  3913.  FEh    server bindery locked
  3914.  FFh    bindery failure
  3915.  
  3916. Format of request buffer:
  3917. Offset    Size    Description
  3918.  00h    WORD    length of following data (max ABh)
  3919.  02h    BYTE    64h (subfunction "Create Queue")
  3920.  03h    WORD    (big-endian) queue type
  3921.  05h    BYTE    length of queue's name (01h-2Fh)
  3922.  06h  N BYTEs    queue's name
  3923.     BYTE    directory handle or 00h
  3924.     BYTE    length of path name (01h-76h)
  3925.       N BYTEs    path name of directory in which to create queue subdirectory
  3926.  
  3927. Format of reply buffer:
  3928. Offset    Size    Description
  3929.  00h    WORD    (call) 0004h (size of following results buffer)
  3930.  02h    DWORD    (big-endian) object ID of queue
  3931. --------N-21E3--SF65-------------------------
  3932. INT 21 - Novell NetWare - QUEUE SERVICES - DESTROY QUEUE
  3933.     AH = E3h subfn 65h
  3934.     DS:SI -> request buffer (see below)
  3935.     ES:DI -> reply buffer (see below)
  3936. Return: AL = status (00h,96h,9Ch,D0h,D1h,FFh) (see also AH=E3h/SF=64h)
  3937.         FFh hardware failure
  3938. Desc:    abort all active jobs, detach all job servers, remove all job entries,
  3939.       delete all job files, remove the queue object and its properties
  3940.       from the bindery, and delete the queue's subdirectory
  3941. Notes:    this function is supported by Advanced NetWare 2.1+
  3942.     caller must have SUPERVISOR privileges
  3943. SeeAlso: AH=E3h/SF=64h,AH=E3h/SF=66h,AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=70h
  3944.  
  3945. Format of request buffer:
  3946. Offset    Size    Description
  3947.  00h    WORD    0005h (length of following data)
  3948.  02h    BYTE    65h (subfunction "Destroy Queue")
  3949.  03h    DWORD    (big-endian) object ID of queue
  3950.  
  3951. Format of reply buffer:
  3952. Offset    Size    Description
  3953.  00h    WORD    (call) 0000h (no results returned)
  3954. --------N-21E3--SF66-------------------------
  3955. INT 21 - Novell NetWare - QUEUE SERVICES - READ QUEUE CURRENT STATUS
  3956.     AH = E3h subfn 66h
  3957.     DS:SI -> request buffer (see below)
  3958.     ES:DI -> reply buffer (see below)
  3959. Return: AL = status (00h,96h,9Ch,D1h-D3h,F1h,FCh,FEh,FFh) (see AH=E3h/SF=64h)
  3960. Notes:    this function is supported by Advanced NetWare 2.1+
  3961.     caller must be on a workstation which is security-equivalent to a
  3962.       member of the queue's Q_USERS or Q_OPERATORS properties
  3963. SeeAlso: AH=E3h/SF=64h,AH=E3h/SF=67h,AH=E3h/SF=6Fh,AH=E3h/SF=76h
  3964.  
  3965. Format of request buffer:
  3966. Offset    Size    Description
  3967.  00h    WORD    0005h (length of following data)
  3968.  02h    BYTE    66h (subfunction "Read Queue Current Status")
  3969.  03h    DWORD    (big-endian) object ID of queue
  3970.  
  3971. Format of reply buffer:
  3972. Offset    Size    Description
  3973.  00h    WORD    (call) 0085h (size of following results)
  3974.  02h    DWORD    (big-endian) object ID of queue
  3975.  06h    BYTE    status of queue
  3976.         bit 0: operator disabled addition of new jobs
  3977.         bit 1: operator refuses additional job servers attaching
  3978.         bit 2: operator disabled job servicing
  3979.  07h    BYTE    number of jobs in queue (00h-FAh)
  3980.  08h    BYTE    number of servers attached to queue (00h-19h)
  3981.  09h 25 DWORDs    list of object IDs of attached servers
  3982.  6Dh 25 BYTEs    list of attached servers' stations
  3983.  86h    BYTE    (call) maximum number of servers to return
  3984. --------N-21E3--SF67-------------------------
  3985. INT 21 - Novell NetWare - QUEUE SERVICES - SET QUEUE CURRENT STATUS
  3986.     AH = E3h subfn 67h
  3987.     DS:SI -> request buffer (see below)
  3988.     ES:DI -> reply buffer (see below)
  3989. Return: AL = status (00h,96h,9Ch,D0h,D1h,D3h,FEh,FFh) (see AH=E3h/SF=64h)
  3990. Notes:    this function is supported by Advanced NetWare 2.1+
  3991.     caller must have operator privileges
  3992. SeeAlso: AH=E3h/SF=64h,AH=E3h/SF=66h,AH=E3h/SF=6Fh,AH=E3h/SF=76h
  3993.  
  3994. Format of request buffer:
  3995. Offset    Size    Description
  3996.  00h    WORD    0006h (length of following data)
  3997.  02h    BYTE    67h (subfunction "Set Queue Current Status")
  3998.  03h    DWORD    (big-endian) object ID of queue
  3999.  07h    BYTE    queue status
  4000.         bit 0: operator disabled addition of new jobs
  4001.         bit 1: operator refuses additional job servers attaching
  4002.         bit 2: operator disabled job servicing
  4003.  
  4004. Format of reply buffer:
  4005. Offset    Size    Description
  4006.  00h    WORD    (call) 0000h (no results returned)
  4007. --------N-21E3--SF68-------------------------
  4008. INT 21 - Novell NetWare - QUEUE SERVICES - CREATE QUEUE JOB AND FILE
  4009.     AH = E3h subfn 68h
  4010.     DS:SI -> request buffer (see below)
  4011.     ES:DI -> reply buffer (see below)
  4012. Return: AL = status (00h,96h,99h,9Ch,D0h-D4h,DAh,EDh,EFh-F1h,F7h,FCh,FEh,FFh)
  4013.         (see AH=E3h/SF=64h)
  4014. Notes:    this function is supported by Advanced NetWare 2.1+
  4015.     caller must be on a workstation which is security-equivalent to a
  4016.       member of the queue's Q_USER property
  4017. SeeAlso: AH=E0h"SPOOLING",AH=E3h/SF=69h,AH=E3h/SF=6Ah,AH=E3h/SF=6Eh
  4018.  
  4019. Format of request buffer:
  4020. Offset    Size    Description
  4021.  00h    WORD    0107h (length of following data)
  4022.  02h    BYTE    68h (subfunction "Close File and Start Queue Job")
  4023.  03h    DWORD    (big-endian) object ID of queue
  4024.  07h    BYTE    client station
  4025.  08h    BYTE    client task number
  4026.  09h    DWORD    (big-endian) object ID of client
  4027.  0Dh    DWORD    (big-endian) object ID of target server
  4028.         FFFFFFFh if any server acceptable
  4029.  11h  6 BYTEs    target execution time (year,month,day,hour,minute,second)
  4030.         FFFFFFFFFFFFh to execute as soon as possible
  4031.  17h  6 BYTEs    job entry time (year,month,day,hour,minute,second)
  4032.  1Dh    WORD    (big-endian) job number
  4033.  1Fh    WORD    (big-endian) job type
  4034.  21h    BYTE    job position
  4035.  22h    BYTE    job control flags
  4036.  23h 14 BYTEs    ASCIZ job file name
  4037.  31h  6 BYTEs    job file handle
  4038.  37h    BYTE    server station
  4039.  38h    BYTE    server task number
  4040.  39h    DWORD    (big-endian) object ID of server
  4041.  3Dh 50 BYTEs    ASCIZ job description string
  4042.  6Fh 152 BYTEs    client record area
  4043.  
  4044. Format of reply buffer:
  4045. Offset    Size    Description
  4046.  00h    WORD    (call) 0036h (size of following results buffer)
  4047.  02h    BYTE    client station
  4048.  03h    BYTE    client task number
  4049.  04h    DWORD    (big-endian) object ID of client
  4050.  08h    DWORD    (big-endian) object ID of target server
  4051.  0Ch  6 BYTEs    target execution time (year,month,day,hour,minute,second)
  4052.  12h  6 BYTEs    job entry time (year,month,day,hour,minute,second)
  4053.  18h    WORD    (big-endian) job number
  4054.  1Ah    WORD    (big-endian) job type
  4055.  1Ch    BYTE    job position
  4056.  1Dh    BYTE    job control flags
  4057.  1Eh 14 BYTEs    ASCIZ job file name
  4058.  2Ch  6 BYTEs    job file handle
  4059.  32h    BYTE    server station
  4060.  33h    BYTE    server task number
  4061.  34h    DWORD    (big-endian) object ID of server or 00000000h
  4062. --------N-21E3--SF69-------------------------
  4063. INT 21 - Novell NetWare - QUEUE SERVICES - CLOSE FILE AND START QUEUE JOB
  4064.     AH = E3h subfn 69h
  4065.     DS:SI -> request buffer (see below)
  4066.     ES:DI -> reply buffer (see below)
  4067. Return: AL = status (00h,96h,D0h,D1h,D3h,D5h,D6h,FEh,FFh) (see AH=E3h/SF=64h)
  4068. Notes:    this function is supported by Advanced NetWare 2.1+
  4069.     caller must be on the workstation which created the job
  4070. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Eh
  4071.  
  4072. Format of request buffer:
  4073. Offset    Size    Description
  4074.  00h    WORD    0007h (length of following data)
  4075.  02h    BYTE    69h (subfunction "Close File and Start Queue Job")
  4076.  03h    DWORD    (big-endian) object ID of queue
  4077.  07h    WORD    (big-endian) job number
  4078.  
  4079. Format of reply buffer:
  4080. Offset    Size    Description
  4081.  00h    WORD    (call) 0000h (no results returned)
  4082. --------N-21E3--SF6A-------------------------
  4083. INT 21 - Novell NetWare - QUEUE SERVICES - REMOVE JOB FROM QUEUE
  4084.     AH = E3h subfn 6Ah
  4085.     DS:SI -> request buffer (see below)
  4086.     ES:DI -> reply buffer (see below)
  4087. Return: AL = status (00h,96h,D0h,D1h,D5h,D6h,FEh,FFh) (see AH=E3h/SF=64h)
  4088. Notes:    this function is supported by Advanced NetWare 2.1+
  4089.     caller must have created the job or be an operator
  4090. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Eh
  4091.  
  4092. Format of request buffer:
  4093. Offset    Size    Description
  4094.  00h    WORD    0007h (length of following data)
  4095.  02h    BYTE    6Ah (subfunction "Remove Job From Queue")
  4096.  03h    DWORD    (big-endian) object ID of queue
  4097.  07h    WORD    (big-endian) job number
  4098.  
  4099. Format of reply buffer:
  4100. Offset    Size    Description
  4101.  00h    WORD    (call) 0000h (no results returned)
  4102. --------N-21E3--SF6B-------------------------
  4103. INT 21 - Novell NetWare - QUEUE SERVICES - GET QUEUE JOB LIST
  4104.     AH = E3h subfn 6Bh
  4105.     DS:SI -> request buffer (see below)
  4106.     ES:DI -> reply buffer (see below)
  4107. Return: AL = status (00h,96h,9Ch,D0h-D3h,FCh,FEh,FFh) (see AH=E3h/SF=64h)
  4108. Notes:    this function is supported by Advanced NetWare 2.1+
  4109.     caller must be on a workstation which is security-equivalent to a
  4110.       member of the Q_USERS or Q_OPERATORS properties
  4111. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Eh
  4112.  
  4113. Format of request buffer:
  4114. Offset    Size    Description
  4115.  00h    WORD    0005h (length of following data)
  4116.  02h    BYTE    6Bh (subfunction "Get Queue Job List")
  4117.  03h    DWORD    (big-endian) object ID of queue
  4118.  
  4119. Format of reply buffer:
  4120. Offset    Size    Description
  4121.  00h    WORD    (call) size of following results buffer (max 1F6h)
  4122.  02h    WORD    (big-endian) job count
  4123.  04h  N WORDs    (big-endian) list of job numbers by position in queue
  4124.     WORD    maximum job numbers
  4125. --------N-21E3--SF6C-------------------------
  4126. INT 21 - Novell NetWare - QUEUE SERVICES - READ QUEUE JOB ENTRY
  4127.     AH = E3h subfn 6Ch
  4128.     DS:SI -> request buffer (see below)
  4129.     ES:DI -> reply buffer (see below)
  4130. Return: AL = status (00h,96h,D0h-D3h,D5h,FCh,FEh,FFh) (see AH=E3h/SF=64h)
  4131. Notes:    this function is supported by Advanced NetWare 2.1+
  4132.     caller must be on a workstation which is security-equivalent to a
  4133.       member of the Q_USERS, Q_OPERATORS, or Q_SERVERS properties
  4134. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Eh
  4135.  
  4136. Format of request buffer:
  4137. Offset    Size    Description
  4138.  00h    WORD    0007h (length of following data)
  4139.  02h    BYTE    6Ch (subfunction "Read Queue Job Entry")
  4140.  03h    DWORD    (big-endian) object ID of queue
  4141.  07h    WORD    (big-endian) job number
  4142.  
  4143. Format of reply buffer:
  4144. Offset    Size    Description
  4145.  00h    WORD    (call) 0100h (size of following results)
  4146.  02h    BYTE    client station number
  4147.  03h    BYTE    client task number
  4148.  04h    DWORD    object ID of client
  4149.  08h    DWORD    (big-endian) object ID of target server
  4150.         FFFFFFFFh if any server acceptable
  4151.  0Ch  6 BYTEs    target execution time (year,month,day,hour,minute,second)
  4152.         FFFFFFFFFFFFh if serviced as soon as possible
  4153.  12h  6 BYTEs    job entry time (year,month,day,hour,minute,second)
  4154.  18h    WORD    (big-endian) job number
  4155.  1Ah    WORD    (big-endian) job type
  4156.  1Ch    BYTE    job position
  4157.  1Dh    BYTE    job control flags (see below)
  4158.  1Eh 14 BYTEs    ASCIZ job filename
  4159.  2Ch  6 BYTEs    job file handle
  4160.  32h    BYTE    server station
  4161.  33h    BYTE    server task number
  4162.  34h    DWORD    object ID of server
  4163.  38h 50 BYTEs    ASCIZ job description string
  4164.  6Ah 152 BYTEs    client record area
  4165.  
  4166. Bitfields for job control flags:
  4167.  bit 3    job will be serviced automatically if connection broken
  4168.  bit 4    job remains in queue after server aborts job
  4169.  bit 5    client has not filled associated job file
  4170.  bit 6    User Hold--job advances, but cannot be serviced until this bit is
  4171.       cleared by user or operator
  4172.  bit 7    Operator Hold--job advances, but cannot be serviced until this bit is
  4173.       cleared by an operator
  4174. --------N-21E3--SF6D-------------------------
  4175. INT 21 - Novell NetWare - QUEUE SERVICES - CHANGE QUEUE JOB ENTRY
  4176.     AH = E3h subfn 6Dh
  4177.     DS:SI -> request buffer (see below)
  4178.     ES:DI -> reply buffer (see below)
  4179. Return: AL = status (00h,96h,D0h,D1h,D5h,D7h,FEh,FFh) (see AH=E3h/SF=64h)
  4180. Notes:    this function is supported by Advanced NetWare 2.1+
  4181.     caller must be an operator or the user who created the job
  4182. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Ch,AH=E3h/SF=6Eh
  4183.  
  4184. Format of request buffer:
  4185. Offset    Size    Description
  4186.  00h    WORD    0105h (length of following data)
  4187.  02h    BYTE    6Dh (subfunction "Change Queue Job Entry")
  4188.  03h    DWORD    (big-endian) object ID of queue
  4189.  07h    BYTE    client station number
  4190.  08h    BYTE    client task number
  4191.  09h    DWORD    (big-endian) object ID of client
  4192.  0Dh    DWORD    (big-endian) object ID of target server
  4193.  11h  6 BYTEs    target execution time (year,month,day,hour,minute,second)
  4194.  17h  6 BYTEs    job entry time (year,month,day,hour,minute,second)
  4195.  1Dh    WORD    (big-endian) job number
  4196.  1Fh    WORD    (big-endian) job type
  4197.  21h    BYTE    job position
  4198.  22h    BYTE    job control flags (see AH=E3h/SF=6Ch)
  4199.  23h 14 BYTEs    ASCIZ job filename
  4200.  31h  6 BYTEs    job file handle
  4201.  37h    BYTE    server station
  4202.  38h    BYTE    server task number
  4203.  39h    DWORD    object ID of server
  4204.  3Dh 50 BYTEs    ASCIZ job description string
  4205.  6Fh 152 BYTEs    client record area
  4206.  
  4207. Format of reply buffer:
  4208. Offset    Size    Description
  4209.  00h    WORD    (call) 0000h (no results returned)
  4210. --------N-21E3--SF6E-------------------------
  4211. INT 21 - Novell NetWare - QUEUE SERVICES - CHANGE QUEUE JOB POSITION
  4212.     AH = E3h subfn 6Eh
  4213.     DS:SI -> request buffer (see below)
  4214.     ES:DI -> reply buffer (see below)
  4215. Return: AL = status (00h,96h,D0h,D1h,D5h,D6h,FEh,FFh) (see AH=E3h/SF=64h)
  4216. Notes:    this function is supported by Advanced NetWare 2.1+
  4217.     caller must be an operator
  4218.     if the specified position is greater than the number of jobs in the
  4219.       queue, the job is placed at the end of the queue
  4220. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ah,AH=E3h/SF=6Ch,AH=E3h/SF=6Dh
  4221.  
  4222. Format of request buffer:
  4223. Offset    Size    Description
  4224.  00h    WORD    0008h (length of following data)
  4225.  02h    BYTE    6Eh (subfunction "Change Queue Job Position")
  4226.  03h    DWORD    (big-endian) object ID of queue
  4227.  07h    WORD    (big-endian) job number
  4228.  09h    BYTE    new position in queue (01h-FAh)
  4229.  
  4230. Format of reply buffer:
  4231. Offset    Size    Description
  4232.  00h    WORD    (call) 0000h (no results returned)
  4233. --------N-21E3--SF6F-------------------------
  4234. INT 21 - Novell NetWare - QUEUE SERVICES - ATTACH QUEUE SERVER TO QUEUE
  4235.     AH = E3h subfn 6Fh
  4236.     DS:SI -> request buffer (see below)
  4237.     ES:DI -> reply buffer (see below)
  4238. Return: AL = status (00h,96h,9Ch,D0h,D1h,D3h,DAh,DBh,FEh,FFh)
  4239.         (see also AH=E3h/SF=64h)
  4240.         FFh bindery failure, or no such property, or no such member
  4241. Desc:    attach the calling job server to the specified queue
  4242. Notes:    this function is supported by Advanced NetWare 2.1+
  4243.     a queue may have up to 25 job servers attached
  4244.     the calling workstation must be security-equivalent to a member of the
  4245.       queue's Q_SERVERS property
  4246. SeeAlso: AH=E3h/SF=70h,AH=E3h/SF=71h,AH=E3h/SF=72h,AH=E3h/SF=73h,AH=E3h/SF=76h
  4247.  
  4248. Format of request buffer:
  4249. Offset    Size    Description
  4250.  00h    WORD    0005h (length of following data)
  4251.  02h    BYTE    6Fh (subfunction "Attach Queue Server To Queue")
  4252.  03h    DWORD    (big-endian) object ID of queue
  4253.  
  4254. Format of reply buffer:
  4255. Offset    Size    Description
  4256.  00h    WORD    (call) 0000h (no results returned)
  4257. --------N-21E3--SF70-------------------------
  4258. INT 21 - Novell NetWare - QUEUE SERVICES - DETACH QUEUE SERVER FROM QUEUE
  4259.     AH = E3h subfn 70h
  4260.     DS:SI -> request buffer (see below)
  4261.     ES:DI -> reply buffer (see below)
  4262. Return: AL = status (00h,96h,9Ch,D0h,D1h,D2h,FEh,FFh) (see AH=E3h/SF=64h)
  4263. Desc:    remove the calling job server from the specified queue's list of
  4264.       servers
  4265. Notes:    this function is supported by Advanced NetWare 2.1+
  4266.     the caller must have previously attached itself to the queue
  4267. SeeAlso: AH=E3h/SF=6Fh,AH=E3h/SF=72h,AH=E3h/SF=73h,AH=E3h/SF=76h
  4268.  
  4269. Format of request buffer:
  4270. Offset    Size    Description
  4271.  00h    WORD    0005h (length of following data)
  4272.  02h    BYTE    70h (subfunction "Detach Queue Server From Queue")
  4273.  03h    DWORD    (big-endian) object ID of queue
  4274.  
  4275. Format of reply buffer:
  4276. Offset    Size    Description
  4277.  00h    WORD    (call) 0000h (no results returned)
  4278. --------N-21E3--SF71-------------------------
  4279. INT 21 - Novell NetWare - QUEUE SERVICES - SERVICE QUEUE JOB AND OPEN FILE
  4280.     AH = E3h subfn 71h
  4281.     DS:SI -> request buffer (see below)
  4282.     ES:DI -> reply buffer (see AH=E3h/SF=68h)
  4283. Return: AL = status (00h,96h,9Ch,D0h,D1h,D3h,D5h,D9h,DAh,FEh,FFh)
  4284.         (see AH=E3h/SF=64h)
  4285. Notes:    this function is supported by Advanced NetWare 2.1+
  4286.     the caller must be on a workstation which is security-equivalent to a
  4287.       member of the queue's Q_USERS, Q_OPERATORS, or Q_SERVERS properties
  4288. SeeAlso: AH=E3h/SF=6Fh,AH=E3h/SF=72h,AH=E3h/SF=73h,AH=E3h/SF=76h
  4289.  
  4290. Format of request buffer:
  4291. Offset    Size    Description
  4292.  00h    WORD    0007h (length of following data)
  4293.  02h    BYTE    71h (subfunction "Service Queue Job and Open File")
  4294.  03h    DWORD    (big-endian) object ID of queue
  4295.  07h    WORD    (big-endian) target job type
  4296.         FFFFh any
  4297. --------N-21E3--SF72-------------------------
  4298. INT 21 - Novell NetWare - QUEUE SERVICES - FINISH SERVICING QUEUE JOB AND FILE
  4299.     AH = E3h subfn 72h
  4300.     DS:SI -> request buffer (see below)
  4301.     ES:DI -> reply buffer (see below)
  4302. Return: AL = status (00h,96h,D0h,D1h,D6h) (see AH=E3h/SF=64h)
  4303. Desc:    inform the Queue Management System (QMS) that the queue server has
  4304.       completed a job
  4305. Notes:    this function is supported by Advanced NetWare 2.1+
  4306.     the caller must be a job server which has previously obtained a job
  4307.       for servicing
  4308. SeeAlso: AH=E3h/SF=6Fh,AH=E3h/SF=71h,AH=E3h/SF=73h,AH=E3h/SF=76h
  4309.  
  4310. Format of request buffer:
  4311. Offset    Size    Description
  4312.  00h    WORD    000Bh (length of following data)
  4313.  02h    BYTE    72h (subfunction "Finish Servicing Queue Job and File")
  4314.  03h    DWORD    (big-endian) object ID of queue
  4315.  07h    WORD    (big-endian) job number
  4316.  09h    DWORD    (big-endian) charge
  4317.  
  4318. Format of reply buffer:
  4319. Offset    Size    Description
  4320.  00h    WORD    (call) 0000h (no results returned)
  4321. --------N-21E3--SF73-------------------------
  4322. INT 21 - Novell NetWare - QUEUE SERVICES - ABORT SERVICING QUEUE JOB AND FILE
  4323.     AH = E3h subfn 73h
  4324.     DS:SI -> request buffer (see below)
  4325.     ES:DI -> reply buffer (see below)
  4326. Return: AL = status (00h,96h,D0h,D1h,D6h,D9h) (see AH=E3h/SF=64h)
  4327. Desc:    inform the Queue Management System (QMS) that the queue server is
  4328.       unable to service a previously-accepted job
  4329. Note:    this function is supported by Advanced NetWare 2.1+
  4330. SeeAlso: AH=E3h/SF=6Fh,AH=E3h/SF=71h,AH=E3h/SF=72h,AH=E3h/SF=76h
  4331.  
  4332. Format of request buffer:
  4333. Offset    Size    Description
  4334.  00h    WORD    0007h (length of following data)
  4335.  02h    BYTE    73h (subfunction "Abort Servicing Queue Job and File")
  4336.  03h    DWORD    (big-endian) object ID of queue
  4337.  07h    WORD    (big-endian) job number
  4338.  
  4339. Format of reply buffer:
  4340. Offset    Size    Description
  4341.  00h    WORD    (call) 0000h (no results returned)
  4342. --------N-21E3--SF74-------------------------
  4343. INT 21 - Novell NetWare - QUEUE SERVICES - CHANGE TO CLIENT RIGHTS
  4344.     AH = E3h subfn 74h
  4345.     DS:SI -> request buffer (see below)
  4346.     ES:DI -> reply buffer (see below)
  4347. Return: AL = status (00h,96h,D0h,D1h,D5h,D9h) (see AH=E3h/SF=64h)
  4348. Desc:    temporarily assume the login identity of the client submitting the
  4349.       job being serviced
  4350. Notes:    this function is supported by Advanced NetWare 2.1+
  4351.     caller must be a job server which has obtained a job for servicing
  4352. SeeAlso: AH=E3h/SF=75h
  4353.  
  4354. Format of request buffer:
  4355. Offset    Size    Description
  4356.  00h    WORD    0007h (length of following data)
  4357.  02h    BYTE    74h (subfunction "Change To Client Rights")
  4358.  03h    DWORD    (big-endian) object ID of queue
  4359.  07h    WORD    (big-endian) job number
  4360.  
  4361. Format of reply buffer:
  4362. Offset    Size    Description
  4363.  00h    WORD    (call) 0000h (no results returned)
  4364. --------N-21E3--SF75-------------------------
  4365. INT 21 - Novell NetWare - QUEUE SERVICES - RESTORE QUEUE SERVER RIGHTS
  4366.     AH = E3h subfn 75h
  4367.     DS:SI -> request buffer (see below)
  4368.     ES:DI -> reply buffer (see below)
  4369. Return: AL = status (00h,96h,9Ch,D0h,D1h,D3h,D5h,D9h,DAh,FEh,FFh)
  4370.         (see AH=E3h/SF=64h)
  4371. Desc:    restore server's own identity after assuming the login identity of the
  4372.       client submitting the job being serviced
  4373. Notes:    this function is supported by Advanced NetWare 2.1+
  4374.     caller must be a job server which has previously changed its identity
  4375. SeeAlso: AH=E3h/SF=74h
  4376.  
  4377. Format of request buffer:
  4378. Offset    Size    Description
  4379.  00h    WORD    0001h (length of following data)
  4380.  02h    BYTE    75h (subfunction "Change To Client Rights")
  4381.  
  4382. Format of reply buffer:
  4383. Offset    Size    Description
  4384.  00h    WORD    (call) 0000h (no results returned)
  4385. --------N-21E3--SF76-------------------------
  4386. INT 21 - Novell NetWare - QUEUE SERVICES - READ QUEUE SERVER CURRENT STATUS
  4387.     AH = E3h subfn 76h
  4388.     DS:SI -> request buffer (see below)
  4389.     ES:DI -> reply buffer (see below)
  4390. Return: AL = status (00h,96h,9Ch,D1h-D3h,F1h,FCh,FEh,FFh) (see AH=E3h/SF=64h)
  4391. Notes:    this function is supported by Advanced NetWare 2.1+
  4392.     caller must be on a workstation which is security-equivalent to a
  4393.       member of the Q_USERS or Q_OPERATORS properties
  4394. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ch,AH=E3h/SF=6Fh,AH=E3h/SF=77h,AH=E3h/SF=78h
  4395.  
  4396. Format of request buffer:
  4397. Offset    Size    Description
  4398.  00h    WORD    000Ah (length of following data)
  4399.  02h    BYTE    76h (subfunction "Read Queue Server Current Status")
  4400.  03h    DWORD    (big-endian) object ID of queue
  4401.  07h    DWORD    (big-endian) object ID of server
  4402.  0Bh    BYTE    server station
  4403.  
  4404. Format of reply buffer:
  4405. Offset    Size    Description
  4406.  00h    WORD    (call) 0040h (size of following results)
  4407.  02h 64 BYTEs    server status record (format depends on server)
  4408.         first four bytes should contain estimated "price" for an
  4409.         average job
  4410. --------N-21E3--SF77-------------------------
  4411. INT 21 - Novell NetWare - QUEUE SERVICES - SET QUEUE SERVER CURRENT STATUS
  4412.     AH = E3h subfn 77h
  4413.     DS:SI -> request buffer (see below)
  4414.     ES:DI -> reply buffer (see below)
  4415. Return: AL = status (00h,96h,9Ch,D0h,D1h,FEh,FFh) (see AH=E3h/SF=64h)
  4416. Notes:    this function is supported by Advanced NetWare 2.1+
  4417.     caller must be a job server which has attached itself to the queue
  4418. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ch,AH=E3h/SF=6Fh,AH=E3h/SF=76h,AH=E3h/SF=78h
  4419.  
  4420. Format of request buffer:
  4421. Offset    Size    Description
  4422.  00h    WORD    0045h (length of following data)
  4423.  02h    BYTE    77h (subfunction "Set Queue Server Current Status")
  4424.  03h    DWORD    (big-endian) object ID of queue
  4425.  02h 64 BYTEs    server status record (format depends on server)
  4426.         first four bytes should contain estimated "price" for an
  4427.         average job
  4428.  
  4429. Format of reply buffer:
  4430. Offset    Size    Description
  4431.  00h    WORD    (call) 0000h (no results returned)
  4432. --------N-21E3--SF78-------------------------
  4433. INT 21 - Novell NetWare - QUEUE SERVICES - GET QUEUE JOB'S FILE SIZE
  4434.     AH = E3h subfn 78h
  4435.     DS:SI -> request buffer (see below)
  4436.     ES:DI -> reply buffer (see below)
  4437. Return: AL = status (see also AH=E3h/SF=64h)
  4438.         00h successful
  4439. Notes:    this function is supported by Advanced NetWare 2.1+
  4440.     caller must be on a workstation which is security-equivalent to a
  4441.       member of the queue's Q_USERS, Q_OPERATORS, or Q_SERVERS properties
  4442. SeeAlso: AH=E3h/SF=68h,AH=E3h/SF=6Ch,AH=E3h/SF=71h
  4443.  
  4444. Format of request buffer:
  4445. Offset    Size    Description
  4446.  00h    WORD    0007h (length of following data)
  4447.  02h    BYTE    78h (subfunction "Get Queue Job's File Size")
  4448.  03h    DWORD    (big-endian) object ID of queue
  4449.  07h    WORD    (big-endian) job number
  4450.  
  4451. Format of reply buffer:
  4452. Offset    Size    Description
  4453.  00h    WORD    (call) 000Ah (size of following results)
  4454.  02h    DWORD    (big-endian) object ID of queue
  4455.  06h    WORD    (big-endian) job number
  4456.  08h    DWORD    (big-endian) size of job file in bytes
  4457. --------N-21E3--SF96-------------------------
  4458. INT 21 - Novell NetWare - ACCOUNTING SERVICES - GET ACCOUNT STATUS
  4459.     AH = E3h subfn 96h
  4460.     DS:SI -> request buffer (see below)
  4461.     ES:DI -> reply buffer (see below)
  4462. Return: AL = status (00h,C0h,C1h) (see below)
  4463. Note:    this function is supported by Advanced NetWare 2.1+
  4464. SeeAlso: AH=E3h/SF=97h,AH=E3h/SF=98h,AH=E3h/SF=99h
  4465.  
  4466. Values for status:
  4467.  00h    successful
  4468.  C0h    no account privileges
  4469.  C1h    no account balance
  4470.  C2h    credit limit exceeded
  4471.  C3h    too many holds on account
  4472.  
  4473. Format of request buffer:
  4474. Offset    Size    Description
  4475.  00h    WORD    length of following data (max 33h)
  4476.  02h    BYTE    96h (subfunction "Get Account Status")
  4477.  03h    WORD    (big-endian) type of bindery object
  4478.  05h    BYTE    length of object name (01h to 2Fh)
  4479.  06h  N BYTEs    object name
  4480.  
  4481. Format of reply buffer:
  4482. Offset    Size    Description
  4483.  00h    WORD    (call) length of following buffer space
  4484.  02h    DWORD    (big-endian) account balance
  4485.  06h    DWORD    (big-endian) credit limit
  4486.         signed number indicating lowest allowable account balance
  4487.  0Ah 120 BYTEs    reserved
  4488.  82h    DWORD    (big-endian) object ID, server 1
  4489.  86h    DWORD    (big-endian) hold amount, server 1
  4490.     ...
  4491.  F8h    DWORD    (big-endian) object ID, server 16
  4492.  FCh    DWORD    (big-endian) hold amount, server 16
  4493. Note:    the reply buffer lists the servers which have placed holds on a portion
  4494.       of the account balance, and the amount reserved by each
  4495. --------N-21E3--SF97-------------------------
  4496. INT 21 - Novell NetWare - ACCOUNTING SERVICES - SUBMIT ACCOUNT CHARGE
  4497.     AH = E3h subfn 97h
  4498.     DS:SI -> request buffer (see below)
  4499.     ES:DI -> reply buffer (see below)
  4500. Return: AL = status (00h,C0h-C2h) (see AH=E3h/SF=96h)
  4501. Note:    this function is supported by Advanced NetWare 2.1+
  4502. SeeAlso: AH=E3h/SF=96h,AH=E3h/SF=98h
  4503.  
  4504. Format of request buffer:
  4505. Offset    Size    Description
  4506.  00h    WORD    length of following data (max 13Fh)
  4507.  02h    BYTE    97h (subfunction "Submit Account Charge")
  4508.  03h    WORD    (big-endian) service type
  4509.  05h    DWORD    (big-endian) amount to be charged to account
  4510.  09h    DWORD    (big-endian) amount of prior hold to be cancelled
  4511.  0Dh    WORD    (big-endian) type of bindery object
  4512.  0Fh    WORD    (big-endian) type of comment
  4513.         8000h-FFFFh reserved for experimental use
  4514.  11h    BYTE    length of object's name
  4515.  12h  N BYTEs    object name
  4516.     BYTE    length of comment
  4517.       N BYTEs    comment
  4518.  
  4519. Format of reply buffer:
  4520. Offset    Size    Description
  4521.  00h    WORD    0000h (no data returned)
  4522. --------N-21E3--SF98-------------------------
  4523. INT 21 - Novell NetWare - ACCOUNTING SERVICES - SUBMIT ACCOUNT HOLD
  4524.     AH = E3h subfn 98h
  4525.     DS:SI -> request buffer (see below)
  4526.     ES:DI -> reply buffer (see below)
  4527. Return: AL = status (00h,C0h-C3h) (see AH=E3h/SF=96h)
  4528. Note:    this function is supported by Advanced NetWare 2.1+
  4529. SeeAlso: AH=E3h/SF=96h,AH=E3h/SF=97h
  4530.  
  4531. Format of request buffer:
  4532. Offset    Size    Description
  4533.  00h    WORD    length of following data (max 37h)
  4534.  02h    BYTE    98h (subfunction "Submit Account Hold")
  4535.  03h    DWORD    (big-endian) amount of account balance to reserve
  4536.  07h    WORD    (big-endian) type of bindery object
  4537.  09h    BYTE    length of object's name
  4538.  0Ah  N BYTEs    object name
  4539.  
  4540. Format of reply buffer:
  4541. Offset    Size    Description
  4542.  00h    WORD    0000h (no data returned)
  4543. --------N-21E3--SF99-------------------------
  4544. INT 21 - Novell NetWare - ACCOUNTING SERVICES - SUBMIT ACCOUNT NOTE
  4545.     AH = E3h subfn 99h
  4546.     DS:SI -> request buffer (see below)
  4547.     ES:DI -> reply buffer (see below)
  4548. Return: AL = status
  4549.         00h successful
  4550.         C0h no account privileges
  4551. Note:    this function is supported by Advanced NetWare 2.1+
  4552. SeeAlso: AH=E3h/SF=96h
  4553.  
  4554. Format of request buffer:
  4555. Offset    Size    Description
  4556.  00h    WORD    length of following data (max 137h)
  4557.  02h    BYTE    99h (subfunction "Submit Account Note")
  4558.  03h    WORD    (big-endian) type of service
  4559.  05h    WORD    (big-endian) type of bindery object
  4560.  07h    WORD    (big-endian) type of comment
  4561.         8000h-FFFFh reserved for experimental use
  4562.  09h    BYTE    length of object's name
  4563.  0Ah  N BYTEs    object name
  4564.     BYTE    length of comment
  4565.       N BYTEs    comment
  4566.  
  4567. Format of reply buffer:
  4568. Offset    Size    Description
  4569.  00h    WORD    0000h (no data returned)
  4570. --------N-21E3--SFC8-------------------------
  4571. INT 21 - Novell NetWare - FILE SERVER - CHECK CONSOLE PRIVILEGES
  4572.     AH = E3h subfn C8h
  4573.     DS:SI -> request buffer (see below)
  4574.     ES:DI -> reply buffer (see below)
  4575. Return: AL = status
  4576.         00h successful
  4577.         C6h no console rights
  4578. Desc:    determine whether the caller is a console operator
  4579. Notes:    this function is supported by Advanced NetWare 2.1+
  4580.     NetWare determines console privileges by checking the file server's
  4581.       OPERATOR property for the caller's object ID
  4582. SeeAlso: AH=E3h/SF=C9h,AH=E3h/SF=D1h
  4583.  
  4584. Format of request buffer:
  4585. Offset    Size    Description
  4586.  00h    WORD    0001h (length of following data)
  4587.  02h    BYTE    C8h (subfunction "Check Console Privileges")
  4588.  
  4589. Format of reply buffer:
  4590. Offset    Size    Description
  4591.  00h    WORD    (call) 0000h (no results returned)
  4592. --------N-21E3--SFC9-------------------------
  4593. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER DESCRIPTION STRINGS
  4594.     AH = E3h subfn C9h
  4595.     DS:SI -> request buffer (see below)
  4596.     ES:DI -> reply buffer (see below)
  4597. Return: AL = status
  4598.         00h successful
  4599. Notes:    this function is supported by Advanced NetWare 2.1+
  4600.     the calling workstation must be attached to the file server
  4601. SeeAlso: AH=E3h/SF=11h,AH=E3h/SF=CDh,AH=E3h/SF=E8h
  4602.  
  4603. Format of request buffer:
  4604. Offset    Size    Description
  4605.  00h    WORD    0001h (length of following data)
  4606.  02h    BYTE    C9h (subfunction "Get File Server Description Strings")
  4607.  
  4608. Format of reply buffer:
  4609. Offset    Size    Description
  4610.  00h    WORD    (call) 0200h (size of following results buffer)
  4611.  02h    var    ASCIZ name of company distributing this copy of NetWare
  4612.     var    ASCIZ version and revision
  4613.       9 BYTEs    ASCIZ revision date (mm/dd/yy)
  4614.     var    ASCIZ copyright notice
  4615. --------N-21E3--SFCA-------------------------
  4616. INT 21 - Novell NetWare - FILE SERVER - SET FILE SERVER DATE AND TIME
  4617.     AH = E3h subfn CAh
  4618.     DS:SI -> request buffer (see below)
  4619.     ES:DI -> reply buffer (see below)
  4620. Return: AL = status
  4621.         00h successful
  4622.         C6h no console rights
  4623. Notes:    this function is supported by Advanced NetWare 2.1+
  4624.     the calling workstation must have console operator privileges
  4625. SeeAlso: AH=2Bh,AH=2Dh,AH=E3h/SF=C8h,AH=E7h
  4626.  
  4627. Format of request buffer:
  4628. Offset    Size    Description
  4629.  00h    WORD    0007h (length of following data)
  4630.  02h    BYTE    CAh (subfunction "Set File Server Date And Time")
  4631.  03h    BYTE    year (00-79 = 2000-2079, 80-99 = 1980-1999)
  4632.  04h    BYTE    month (1-12)
  4633.  05h    BYTE    day (1-31)
  4634.  06h    BYTE    hour (0-23)
  4635.  07h    BYTE    minute
  4636.  08h    BYTR    second
  4637.  
  4638. Format of reply buffer:
  4639. Offset    Size    Description
  4640.  00h    WORD    (call) 0000h (no results returned)
  4641. --------N-21E3--SFCB-------------------------
  4642. INT 21 - Novell NetWare - FILE SERVER - DISABLE FILE SERVER LOGIN
  4643.     AH = E3h subfn CBh
  4644.     DS:SI -> request buffer (see below)
  4645.     ES:DI -> reply buffer (see below)
  4646. Return: AL = status
  4647.         00h successful
  4648.         C6h no console rights
  4649. Notes:    this function is supported by Advanced NetWare 2.1+
  4650.     the calling workstation must have console operator privileges
  4651. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CCh,AH=E3h/SF=D3h
  4652.  
  4653. Format of request buffer:
  4654. Offset    Size    Description
  4655.  00h    WORD    0001h (length of following data)
  4656.  02h    BYTE    CBh (subfunction "Disable File Server Login")
  4657.  
  4658. Format of reply buffer:
  4659. Offset    Size    Description
  4660.  00h    WORD    (call) 0000h (no results returned)
  4661. --------N-21E3--SFCC-------------------------
  4662. INT 21 - Novell NetWare - FILE SERVER - ENABLE FILE SERVER LOGIN
  4663.     AH = E3h subfn CCh
  4664.     DS:SI -> request buffer (see below)
  4665.     ES:DI -> reply buffer (see below)
  4666. Return: AL = status
  4667.         00h successful
  4668.         C6h no console rights
  4669. Notes:    this function is supported by Advanced NetWare 2.1+
  4670.     the calling workstation must have console operator privileges
  4671. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CBh
  4672.  
  4673. Format of request buffer:
  4674. Offset    Size    Description
  4675.  00h    WORD    0001h (length of following data)
  4676.  02h    BYTE    CCh (subfunction "Enable File Server Login")
  4677.  
  4678. Format of reply buffer:
  4679. Offset    Size    Description
  4680.  00h    WORD    (call) 0000h (no results returned)
  4681. --------N-21E3--SFCD-------------------------
  4682. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER LOGIN STATUS
  4683.     AH = E3h subfn CDh
  4684.     DS:SI -> request buffer (see below)
  4685.     ES:DI -> reply buffer (see below)
  4686. Return: AL = status
  4687.         00h successful
  4688.         C6h no console rights
  4689. Notes:    this function is supported by Advanced NetWare 2.1+
  4690.     the calling workstation must have console operator privileges
  4691. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CBh,AH=E3h/SF=CCh
  4692.  
  4693. Format of request buffer:
  4694. Offset    Size    Description
  4695.  00h    WORD    0001h (length of following data)
  4696.  02h    BYTE    CDh (subfunction "Get File Server Login Status")
  4697.  
  4698. Format of reply buffer:
  4699. Offset    Size    Description
  4700.  00h    WORD    (call) 0001h (size of following results buffer)
  4701.  02h    BYTE    login state (00h disabled, 01h enabled)
  4702. --------N-21E3--SFCE-------------------------
  4703. INT 21 - Novell NetWare - FILE SERVICES - PURGE ALL ERASED FILES
  4704.     AH = E3h subfn CEh
  4705.     DS:SI -> request buffer (see below)
  4706.     ES:DI -> reply buffer (see below)
  4707. Return: AL = status
  4708.         00h successful
  4709.         C6h no console rights
  4710. Desc:    all files marked for deletion on the file server are purged, regardless
  4711.       of which workstation actually erased them
  4712. Notes:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  4713.       Alloy NTNX
  4714.     the calling workstation must have console operator privileges
  4715. SeeAlso: AH=13h,AH=E2h/SF=10h,AH=E3h/SF=C8h,AX=F244h
  4716.  
  4717. Format of request buffer:
  4718. Offset    Size    Description
  4719.  00h    WORD    0001h (length of following data)
  4720.  02h    BYTE    CEh (subfunction "Purge All Erased Files")
  4721.  
  4722. Format of reply buffer:
  4723. Offset    Size    Description
  4724.  00h    WORD    (call) 0000h (no results returned)
  4725. --------N-21E3--SFCF-------------------------
  4726. INT 21 - Novell NetWare - FILE SERVER - DISABLE TRANSACTION TRACKING
  4727.     AH = E3h subfn CFh
  4728.     DS:SI -> request buffer (see below)
  4729.     ES:DI -> reply buffer (see below)
  4730. Return: AL = status
  4731.         00h successful
  4732.         C6h no console rights
  4733. Notes:    this function is supported by Advanced NetWare 2.1+
  4734.     the calling workstation must have console operator privileges
  4735. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=D0h
  4736.  
  4737. Format of request buffer:
  4738. Offset    Size    Description
  4739.  00h    WORD    0001h (length of following data)
  4740.  02h    BYTE    CFh (subfunction "Disable Transaction Tracking")
  4741.  
  4742. Format of reply buffer:
  4743. Offset    Size    Description
  4744.  00h    WORD    (call) 0000h (no results returned)
  4745. --------N-21E3--SFD0-------------------------
  4746. INT 21 - Novell NetWare - FILE SERVER - ENABLE TRANSACTION TRACKING
  4747.     AH = E3h subfn D0h
  4748.     DS:SI -> request buffer (see below)
  4749.     ES:DI -> reply buffer (see below)
  4750. Return: AL = status
  4751.         00h successful
  4752.         C6h no console rights
  4753. Desc:    restart transaction tracking after being stopped either explicitly by
  4754.       AH=E3h/SF=CFh or automatically due to a full transaction volume
  4755. Notes:    this function is supported by Advanced NetWare 2.1+
  4756.     the calling workstation must have console operator privileges
  4757. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CFh
  4758.  
  4759. Format of request buffer:
  4760. Offset    Size    Description
  4761.  00h    WORD    0001h (length of following data)
  4762.  02h    BYTE    D0h (subfunction "Enable Transaction Tracking")
  4763.  
  4764. Format of reply buffer:
  4765. Offset    Size    Description
  4766.  00h    WORD    (call) 0000h (no results returned)
  4767. --------N-21E3--SFD1-------------------------
  4768. INT 21 - Novell NetWare - FILE SERVER - SEND CONSOLE BROADCAST
  4769.     AH = E3h subfn D1h
  4770.     DS:SI -> request buffer (see below)
  4771.     ES:DI -> reply buffer (see below)
  4772. Return: AL = status
  4773.         00h successful
  4774.         C6h no console rights
  4775. Notes:    this function is supported by Advanced NetWare 2.1+
  4776.     the calling workstation must have console operator privileges
  4777.     the broadcast message will not be received by workstations which have
  4778.       disabled broadcasts with AH=E1h/SF=02h
  4779. SeeAlso: AH=E1h/SF=02h,AH=E1h/SF=09h,AH=E3h/SF=C8h,AH=E3h/SF=D3h
  4780.  
  4781. Format of request buffer:
  4782. Offset    Size    Description
  4783.  00h    WORD    length of following data (max A2h)
  4784.  02h    BYTE    D1h (subfunction "Send Console Broadcast")
  4785.  03h    BYTE    number of connections to receive message
  4786.         00h = all, else specific list below
  4787.  04h  N BYTEs    connection list
  4788.     BYTE    length of message (max 3Ch)
  4789.       N BYTEs    message
  4790.  
  4791. Format of reply buffer:
  4792. Offset    Size    Description
  4793.  00h    WORD    (call) 0000h (no results returned)
  4794. --------N-21E3--SFD2-------------------------
  4795. INT 21 - Novell NetWare - FILE SERVER - CLEAR CONNECTION NUMBER
  4796.     AH = E3h subfn D2h
  4797.     DS:SI -> request buffer (see below)
  4798.     ES:DI -> reply buffer (see below)
  4799. Return: AL = status
  4800.         00h successful
  4801.         C6h no console rights
  4802. Desc:    close the open files and release all file locks for a connection,
  4803.       abort transactions if a TTS file server, and detach from the file
  4804.       server
  4805. Notes:    this function is supported by Advanced NetWare 2.1+
  4806.     the caller must have SUPERVISOR privileges
  4807. SeeAlso: AH=E3h/SF=C9h,AH=E3h/SF=D1h
  4808.  
  4809. Format of request buffer:
  4810. Offset    Size    Description
  4811.  00h    WORD    0002h (length of following data)
  4812.  02h    BYTE    D2h (subfunction "Clear Connection Number")
  4813.  03h    BYTE    connection number
  4814.  
  4815. Format of reply buffer:
  4816. Offset    Size    Description
  4817.  00h    WORD    (call) 0000h (no results returned)
  4818. --------N-21E3--SFD3-------------------------
  4819. INT 21 - Novell NetWare - FILE SERVER - DOWN FILE SERVER
  4820.     AH = E3h subfn D3h
  4821.     DS:SI -> request buffer (see below)
  4822.     ES:DI -> reply buffer (see below)
  4823. Return: AL = status
  4824.         00h successful
  4825.         C6h no console rights
  4826.         FFh files open
  4827. Desc:    take down the file server
  4828. Notes:    this function is supported by Advanced NetWare 2.1+
  4829.     the calling workstation must have SUPERVISOR privileges
  4830. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CBh,AH=E3h/SF=CFh,AH=E3h/SF=D1h
  4831.  
  4832. Format of request buffer:
  4833. Offset    Size    Description
  4834.  00h    WORD    0002h (length of following data)
  4835.  02h    BYTE    D3h (subfunction "Down File Server")
  4836.  03h    BYTE    flag: force down even if files open if nonzero
  4837.  
  4838. Format of reply buffer:
  4839. Offset    Size    Description
  4840.  00h    WORD    (call) 0000h (no results returned)
  4841. --------N-21E3--SFD4-------------------------
  4842. INT 21 - Novell NetWare - FILE SERVER - GET FILE SYSTEM STATISTICS
  4843.     AH = E3h subfn D4h
  4844.     DS:SI -> request buffer (see below)
  4845.     ES:DI -> reply buffer (see below)
  4846. Return: AL = status
  4847.         00h successful
  4848.         C6h no console rights
  4849. Notes:    this function is supported by Advanced NetWare 2.1+
  4850.     the calling workstation must have console operator privileges
  4851. SeeAlso: AH=E3h/SF=0Eh,AH=E3h/SF=C8h,AH=E3h/SF=D9h,AH=E3h/SF=E7h,AH=E3h/SF=E8h
  4852.  
  4853. Format of request buffer:
  4854. Offset    Size    Description
  4855.  00h    WORD    0001h (length of following data)
  4856.  02h    BYTE    D4h (subfunction "Get File System Statistics")
  4857.  
  4858. Format of reply buffer:
  4859. Offset    Size    Description
  4860.  00h    WORD    (call) 0028h (size of following results buffer)
  4861.  02h    DWORD    clock ticks since system started
  4862.  06h    WORD    maximum open files set by configuration
  4863.  08h    WORD    maximum files open concurrently
  4864.  0Ah    WORD    current number of open files
  4865.  0Ch    DWORD    total files opened
  4866.  10h    DWORD    total file read requests
  4867.  14h    DWORD    total file write requests
  4868.  18h    WORD    current changed FATs
  4869.  1Ah    WORD    total changed FATs
  4870.  1Ch    WORD    number of FAT write errors
  4871.  1Eh    WORD    number of fatal FAT write errors
  4872.  20h    WORD    number of FAT scan errors
  4873.  22h    WORD    maximum concurrently-indexed files
  4874.  24h    WORD    current number of indexed files
  4875.  26h    WORD    number of attached indexed files
  4876.  28h    WORD    number of indexed files available
  4877. Note:    all fields except the first are big-endian
  4878. --------N-21E3--SFD5-------------------------
  4879. INT 21 - Novell NetWare - FILE SERVER - GET TRANSACTION TRACKING STATISTICS
  4880.     AH = E3h subfn D5h
  4881.     DS:SI -> request buffer (see below)
  4882.     ES:DI -> reply buffer (see below)
  4883. Return: AL = status
  4884.         00h successful
  4885.         C6h no console rights
  4886. Notes:    this function is supported by Advanced NetWare 2.1+
  4887.     the calling workstation must have console operator privileges
  4888. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=CFh,AH=E3h/SF=D0h,AH=E3h/SF=E8h
  4889.  
  4890. Format of request buffer:
  4891. Offset    Size    Description
  4892.  00h    WORD    0001h (length of following data)
  4893.  02h    BYTE    D5h (subfunction "TTS Get Statistics")
  4894.  
  4895. Format of reply buffer:
  4896. Offset    Size    Description
  4897.  00h    WORD    (call) length of following results buffer (max 1BCh)
  4898.  02h    DWORD    (big-endian) clock ticks since system started
  4899.  06h    BYTE    transaction tracking supported if nonzero
  4900.         (all following fields are invalid if zero)
  4901.  07h    BYTE    transaction tracking enabled
  4902.  08h    WORD    (big-endian) transaction volume number
  4903.  0Ah    WORD    (big-endian) maximum simultaneous transactions configured
  4904.  0Ch    WORD    (big-endian) maximum simultaneous transactions since startup
  4905.  0Eh    WORD    (big-endian) current transactions in progress
  4906.  10h    DWORD    (big-endian) total transactions performed
  4907.  14h    DWORD    (big-endian) total write transactions
  4908.  18h    DWORD    (big-endian) total transactions backed out
  4909.  1Ch    WORD    (big-endian) number of unfilled backout requests
  4910.  1Eh    WORD    (big-endian) disk blocks used for transaction tracking
  4911.  20h    DWORD    (big-endian) blocks allocated for tracked-file FATs
  4912.  24h    DWORD    (big-endian) number of file size changes during a transaction
  4913.  28h    DWORD    (big-endian) number of file truncations during a transaction
  4914.  2Ch    BYTE    number of records following
  4915.  2Dh    Active Transaction Records [array]
  4916.     Offset    Size    Description
  4917.      00h    BYTE    logical connection number
  4918.      01h    BYTE    task number
  4919. --------N-21E3--SFD6-------------------------
  4920. INT 21 - Novell NetWare - FILE SERVER - GET DISK CACHE STATISTICS
  4921.     AH = E3h subfn D6h
  4922.     DS:SI -> request buffer (see below)
  4923.     ES:DI -> reply buffer (see below)
  4924. Return: AL = status
  4925.         00h successful
  4926.         C6h no console rights
  4927. Notes:    this function is supported by Advanced NetWare 2.1+
  4928.     the calling workstation must have console operator privileges
  4929. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=D5h,AH=E3h/SF=D8h,AH=E3h/SF=D9h,AH=E3h/SF=E6h
  4930.  
  4931. Format of request buffer:
  4932. Offset    Size    Description
  4933.  00h    WORD    0001h (length of following data)
  4934.  02h    BYTE    D6h (subfunction "Get Disk Cache Statistics")
  4935.  
  4936. Format of reply buffer:
  4937. Offset    Size    Description
  4938.  00h    WORD    (call) 004Eh (length of following results buffer)
  4939.  02h    DWORD    clock ticks since system started
  4940.  06h    WORD    number of cache buffers
  4941.  08h    WORD    size of cache buffer in bytes
  4942.  0Ah    WORD    number of dirty cache buffers
  4943.  0Ch    DWORD    number of cache read requests
  4944.  10h    DWORD    number of cache write requests
  4945.  14h    DWORD    number of cache hits
  4946.  18h    DWORD    number of cache misses
  4947.  1Ch    DWORD    number of physical read requests
  4948.  20h    DWORD    number of physical write requests
  4949.  24h    WORD    number of physical read errors
  4950.  26h    WORD    number of physical write errors
  4951.  28h    DWORD    cache get requests
  4952.  2Ch    DWORD    cache full write requests
  4953.  30h    DWORD    cache partial write requests
  4954.  34h    DWORD    background dirty writes
  4955.  38h    DWORD    background aged writes
  4956.  3Ch    DWORD    total cache writes
  4957.  40h    DWORD    number of cache allocations
  4958.  44h    WORD    thrashing count
  4959.  46h    WORD    number of times LRU block was dirty
  4960.  48h    WORD    number of reads on cache blocks not yet filled by writes
  4961.  4Ah    WORD    number of times a fragmented write occurred
  4962.  4Ch    WORD    number of cache hits on unavailable block
  4963.  4Eh    WORD    number of times a cache block was scrapped
  4964. Note:    all fields except the first are big-endian
  4965. --------N-21E3--SFD7-------------------------
  4966. INT 21 - Novell NetWare - FILE SERVER - GET DRIVE MAPPING TABLE
  4967.     AH = E3h subfn D7h
  4968.     DS:SI -> request buffer (see below)
  4969.     ES:DI -> reply buffer (see below)
  4970. Return: AL = status
  4971.         00h successful
  4972.         C6h no console rights
  4973. Notes:    this function is supported by Advanced NetWare 2.1+
  4974.     the calling workstation must have console operator privileges
  4975. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=D6h,AH=E3h/SF=D9h,AH=E3h/SF=E6h,AH=E3h/SF=E9h
  4976.  
  4977. Format of request buffer:
  4978. Offset    Size    Description
  4979.  00h    WORD    0001h (length of following data)
  4980.  02h    BYTE    D7h (subfunction "Get Drive Mapping Table")
  4981.  
  4982. Format of reply buffer:
  4983. Offset    Size    Description
  4984.  00h    WORD    (call) 00ECh (length of following results buffer)
  4985.  02h    DWORD    (big-endian) clock tick elapsed since system started
  4986.  06h    BYTE    fault tolerance (SFT) level
  4987.  07h    BYTE    number of logical drives attached to server
  4988.  08h    BYTE    number of physical drives attached to server
  4989.  09h  5 BYTEs    disk channel types (00h none, 01h XT, 02h AT, 03h SCSI,
  4990.         04h disk coprocessor drive, 32h-FFh value-added drive types)
  4991.  0Eh    WORD    (big-endian) number of outstanding controller commands
  4992.  10h 32 BYTEs    drive mapping table (FFh = no such drive)
  4993.  30h 32 BYTEs    drive mirror table (secondary physical drive, FFh = none)
  4994.  50h 32 BYTEs    dead mirror table (last drive mapped to, FFh if never mirrored)
  4995.  70h    BYTE    physical drive being remirrored (FFh = none)
  4996.  71h    BYTE    reserved
  4997.  72h    DWORD    (big-endian) remirrored block
  4998.  76h 60 BYTEs    SFT error table (internal error counters)
  4999. --------N-21E3--SFD8-------------------------
  5000. INT 21 - Novell NetWare - FILE SERVER - GET PHYSICAL DISK STATISTICS
  5001.     AH = E3h subfn D8h
  5002.     DS:SI -> request buffer (see below)
  5003.     ES:DI -> reply buffer (see below)
  5004. Return: AL = status
  5005.         00h successful
  5006.         C6h no console rights
  5007. Notes:    this function is supported by Advanced NetWare 2.1+
  5008.     the calling workstation must have console operator privileges
  5009. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=D9h,AH=E3h/SF=E9h
  5010.  
  5011. Format of request buffer:
  5012. Offset    Size    Description
  5013.  00h    WORD    0002h (length of following data)
  5014.  02h    BYTE    D8h (subfunction "Get Physical Disk Statistics")
  5015.  03h    BYTE    physical disk number
  5016.  
  5017. Format of reply buffer:
  5018. Offset    Size    Description
  5019.  00h    WORD    (call) 005Dh (size of following results record)
  5020.  02h    DWORD    (big-endian) clock ticks since system started
  5021.  06h    BYTE    physical disk channel
  5022.  07h    BYTE    flag: drive removable if nonzero
  5023.  08h    BYTE    physical drive type
  5024.  09h    BYTE    drive number within controller
  5025.  0Ah    BYTE    controller number
  5026.  0Bh    BYTE    controller type
  5027.  0Ch    DWORD    (big-endian) size of drive in 4K disk blocks
  5028.  10h    WORD    (big-endian) number of cylinders on drive
  5029.  12h    BYTE    number of heads
  5030.  13h    BYTE    number of sectors per track
  5031.  14h 64 BYTEs    ASCIZ drive make and model
  5032.  54h    WORD    (big-endian) number of I/O errors
  5033.  56h    DWORD    (big-endian) start of Hot Fix table
  5034.  5Ah    WORD    (big-endian) size of Hot Fix table
  5035.  5Ch    WORD    (big-endian) number of Hot Fix blocks available
  5036.  5Eh    BYTE    flag: Hot Fix disabled if nonzero
  5037. --------N-21E3--SFD9-------------------------
  5038. INT 21 - Novell NetWare - FILE SERVER - GET DISK CHANNEL STATISTICS
  5039.     AH = E3h subfn D9h
  5040.     DS:SI -> request buffer (see below)
  5041.     ES:DI -> reply buffer (see below)
  5042. Return: AL = status
  5043.         00h successful
  5044.         C6h no console rights
  5045. Notes:    this function is supported by Advanced NetWare 2.1+
  5046.     the calling workstation must have console operator privileges
  5047. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=D8h,AH=E3h/SF=E6h,AH=E3h/SF=E9h
  5048.  
  5049. Format of request buffer:
  5050. Offset    Size    Description
  5051.  00h    WORD    0002h (length of following data)
  5052.  02h    BYTE    D9h (subfunction "Get Disk Channel Statistics")
  5053.  03h    BYTE    channel number
  5054.  
  5055. Format of reply buffer:
  5056. Offset    Size    Description
  5057.  00h    WORD    (call) 00A8h (size of following results record)
  5058.  02h    DWORD    (big-endian) clock ticks since system started
  5059.  06h    WORD    (big-endian) channel run state (see below)
  5060.  08h    WORD    (big-endian) channel synchronization state (see below)
  5061.  0Ah    BYTE    driver type
  5062.  0Bh    BYTE    major version of driver
  5063.  0Ch    BYTE    minor version of driver
  5064.  0Dh 65 BYTEs    ASCIZ driver description
  5065.  4Eh    WORD    (big-endian) first I/O address used
  5066.  50h    WORD    (big-endian) length of first I/O address
  5067.  52h    WORD    (big-endian) second I/O address used
  5068.  54h    WORD    (big-endian) length of second I/O address
  5069.  56h  3 BYTEs    first shared memory address
  5070.  59h  2 BYTEs    length of first shared memory address
  5071.  5Bh  3 BYTEs    second shared memory address
  5072.  5Eh  2 BYTEs    length of second shared memory address
  5073.  60h    BYTE    first interrupt number in-use flag
  5074.  61h    BYTE    first interrupt number used
  5075.  62h    BYTE    second interrupt number in-use flag
  5076.  63h    BYTE    second interrupt number used
  5077.  64h    BYTE    first DMA channel in-use flag
  5078.  65h    BYTE    first DMA channel used
  5079.  66h    BYTE    second DMA channel in-use flag
  5080.  67h    BYTE    second DMA channel used
  5081.  68h    BYTE    flags
  5082.  69h    BYTE    reserved
  5083.  6Ah 80 BYTEs    ASCIZ configuration description
  5084.  
  5085. Values for channel run state:
  5086.  0000h    running
  5087.  0001h    being stopped
  5088.  0002h    stopped
  5089.  0003h    nonfunctional
  5090.  
  5091. Values for channel synchronization state:
  5092.  0000h    not in use
  5093.  0002h    used by NetWare, no other requests
  5094.  0004h    used by NetWare, other requests
  5095.  0006h    in use, not needed by NetWare
  5096.  0008h    in use, needed by NetWare
  5097.  000Ah    channel released, NetWare should use it
  5098. --------N-21E3--SFDA-------------------------
  5099. INT 21 - Novell NetWare - FILE SERVER - GET CONNECTION'S TASK INFORMATION
  5100.     AH = E3h subfn DAh
  5101.     DS:SI -> request buffer (see below)
  5102.     ES:DI -> reply buffer (see below)
  5103. Return: AL = status
  5104.         00h successful
  5105.         C6h no console rights
  5106. Notes:    this function is supported by Advanced NetWare 2.1+
  5107.     the calling workstation must have console operator privileges
  5108. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DBh,AH=E3h/SF=DFh,AH=E3h/SF=E1h,AH=E3h/SF=E5h
  5109.  
  5110. Format of request buffer:
  5111. Offset    Size    Description
  5112.  00h    WORD    0003h (length of following data)
  5113.  02h    BYTE    DAh (subfunction "Get Connection's Task Information")
  5114.  03h    WORD    (big-endian) logical connection number
  5115.  
  5116. Format of reply buffer:
  5117. Offset    Size    Description
  5118.  00h    WORD    (call) size of following results record (max 1FEh)
  5119.  02h    BYTE    lock status of connection (see below)
  5120.  03h    var    Lock Status Information (see below)
  5121.  N    BYTE    number of records following
  5122.  N+1    Active Task Information Records [array]
  5123.     Offset    Size    Description
  5124.      00h    BYTE    task number (01h-FFh)
  5125.      01h    BYTE    task state
  5126.             01h in TTS explicit transaction
  5127.             02h in TTS implicit transaction
  5128.             04h shared fileset lock active
  5129.  
  5130. Values for lock status of connection:
  5131.  00h    no locks
  5132.  01h    waiting on physical record lock
  5133.  02h    waiting on file lock
  5134.  03h    waiting on logical record lock
  5135.  04h    waiting on semaphore
  5136.  
  5137. Format of Lock Status Information:
  5138. Offset    Size    Description
  5139. ---lock status 00h---
  5140.  no fields
  5141. ---lock status 01h---
  5142.  00h    BYTE    number of waiting task
  5143.  01h    DWORD    start address
  5144.  05h    DWORD    end address
  5145.  09h    BYTE    volume number
  5146.  0Ah    WORD    directory entry number
  5147.  0Ch 14 BYTEs    ASCIZ filename
  5148. ---lock status 02h---
  5149.  00h    BYTE    number of waiting task
  5150.  01h    BYTE    volume number
  5151.  02h    WORD    directory entry number
  5152.  04h 14 BYTEs    ASCIZ filename
  5153. ---lock status 03h---
  5154.  00h    BYTE    number of waiting task
  5155.  01h    BYTE    length of record name
  5156.  02h  N BYTEs    ASCIZ record name
  5157. ---lock status 04h---
  5158.  00h    BYTE    number of waiting task
  5159.  01h    BYTE    length of semaphore's name
  5160.  02h  N BYTEs    ASCIZ semaphore name
  5161. --------N-21E3--SFDB-------------------------
  5162. INT 21 - Novell NetWare - FILE SERVER - GET CONNECTION'S OPEN FILES
  5163.     AH = E3h subfn DBh
  5164.     DS:SI -> request buffer (see below)
  5165.     ES:DI -> reply buffer (see below)
  5166. Return: AL = status
  5167.         00h successful
  5168.         C6h no console rights
  5169. Notes:    this function is supported by Advanced NetWare 2.1+
  5170.     the calling workstation must have console operator privileges
  5171. SeeAlso: AH=E2h/SF=1Ah,AH=E3h/SF=C8h,AH=E3h/SF=DAh,AH=E3h/SF=DCh,AH=E3h/SF=DFh
  5172. SeeAlso: AH=E3h/SF=E1h
  5173.  
  5174. Format of request buffer:
  5175. Offset    Size    Description
  5176.  00h    WORD    0005h (length of following data)
  5177.  02h    BYTE    DBh (subfunction "Get Connection's Open Files")
  5178.  03h    WORD    (big-endian) logical connection number
  5179.  05h    WORD    (big-endian) last record seen (0000h on first call)
  5180.  
  5181. Format of reply buffer:
  5182. Offset    Size    Description
  5183.  00h    WORD    (call) size of following results record (max 1FEh)
  5184.  02h    WORD    next request record (place in "last record" field on next call)
  5185.         0000h if no more records
  5186.  04h    BYTE    number of records following
  5187.  05h    var    array of File Information Records (see below)
  5188.  
  5189. Format of File Information Record:
  5190. Offset    Size    Description
  5191.  00h    BYTE    task number
  5192.  01h    BYTE    lock flags (see below)
  5193.  02h    BYTE    access flags (see below)
  5194.  03h    BYTE    lock type
  5195.         00h no lock
  5196.         FEh file lock
  5197.         FFh locked by Begin Share File Set
  5198.  04h    BYTE    volume number (00h-1Fh)
  5199.  05h    WORD    (big-endian) directory entry
  5200.  07h 14 BYTEs    ASCIZ filename
  5201.  
  5202. Bitfields for lock flags:
  5203.  bit 0    file is locked
  5204.  bit 1    file opened Shareable
  5205.  bit 2    logged
  5206.  bit 3    file opened Normal
  5207.  bit 6    TTS holding lock
  5208.  bit 7    Transaction Flag set on file
  5209.  
  5210. Bitfields for access flags:
  5211.  bit 0    file open for reading by calling station
  5212.  bit 1    file open for writing by calling station
  5213.  bit 2    deny reads by other stations
  5214.  bit 3    deny writes by other stations
  5215.  bit 4    file detached
  5216.  bit 5    TTS Holding Detach
  5217.  bit 6    TTS Holding Open
  5218. --------N-21E3--SFDC-------------------------
  5219. INT 21 - Novell NetWare - FILE SERVER - GET CONNECTIONS USING A FILE
  5220.     AH = E3h subfn DCh
  5221.     DS:SI -> request buffer (see below)
  5222.     ES:DI -> reply buffer (see below)
  5223. Return: AL = status
  5224.         00h successful
  5225.         C6h no console rights
  5226. Notes:    this function is supported by Advanced NetWare 2.1+
  5227.     the calling workstation must have console operator privileges
  5228. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DAh,AH=E3h/SF=DBh,AH=E3h/SF=DFh,AH=E3h/SF=E1h
  5229.  
  5230. Format of request buffer:
  5231. Offset    Size    Description
  5232.  00h    WORD    length of following data (max 104h)
  5233.  02h    BYTE    DCh (subfunction "Get Connections Using a File")
  5234.  03h    WORD    (big-endian) last record (0000h on first call)
  5235.  05h    BYTE    directory handle
  5236.  06h    BYTE    length of file path
  5237.  07h  N BYTEs    ASCIZ file path
  5238.  
  5239. Format of reply buffer:
  5240. Offset    Size    Description
  5241.  00h    WORD    (call) size of following results record (max 1FEh)
  5242.  02h    WORD    (big-endian) count of tasks which have opened or logged file
  5243.  04h    WORD    (big-endian) count of tasks which have opened file
  5244.  06h    WORD    (big-endian) count of opens for reading
  5245.  08h    WORD    (big-endian) count of opens for writing
  5246.  0Ah    WORD    (big-endian) deny read count
  5247.  0Ch    WORD    (big-endian) deny write count
  5248.  0Eh    WORD    next request record (place in "last record" field on next call)
  5249.         0000h if no more records
  5250.  10h    BYTE    locked flag
  5251.         00h not locked exclusively
  5252.         else locked exclusively
  5253.  11h    BYTE    number of records following
  5254.  12h    var    array of File Usage Information Records (see below)
  5255.  
  5256. Format of File Usage Information Record:
  5257. Offset    Size    Description
  5258.  00h    WORD    (big-endian) logical connection number
  5259.  02h    BYTE    task number
  5260.  03h    BYTE    lock flags (see AH=E3h/SF=DBh)
  5261.  04h    BYTE    access flags (see AH=E3h/SF=DBh)
  5262.  05h    BYTE    lock type
  5263.         00h no lock
  5264.         FEh file lock
  5265.         FFh locked by Begin Share File Set
  5266. --------N-21E3--SFDD-------------------------
  5267. INT 21 - Novell NetWare - FILE SERVER - GET PHYSICAL RECORD LOCKS BY CONN&FILE
  5268.     AH = E3h subfn DDh
  5269.     DS:SI -> request buffer (see below)
  5270.     ES:DI -> reply buffer (see below)
  5271. Return: AL = status
  5272.         00h successful
  5273.         C6h no console rights
  5274.         FFh file not open
  5275. Notes:    this function is supported by Advanced NetWare 2.1+
  5276.     the calling workstation must have console operator privileges
  5277. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DEh,AH=E3h/SF=DFh
  5278.  
  5279. Format of request buffer:
  5280. Offset    Size    Description
  5281.  00h    WORD    0016h (length of following data)
  5282.  02h    BYTE    DDh (subfunction "Get Physical Record Locks by Connection and
  5283.             File")
  5284.  03h    WORD    (big-endian) logical connection number
  5285.  05h    WORD    (big-endian) last record seen (0000h on first call)
  5286.  07h    BYTE    volume number (00h-1Fh)
  5287.  08h    WORD    (big-endian) directory handle
  5288.  0Ah 14 BYTEs    ASCIZ filename
  5289.  
  5290. Format of reply buffer:
  5291. Offset    Size    Description
  5292.  00h    WORD    (call) size of following results record (max 1FEh)
  5293.  02h    WORD    next request record (place in "last record" on next call)
  5294.         0000h if no more records
  5295.  04h    BYTE    number of physical record locks
  5296.  05h    BYTE    number of records following
  5297.  06h    var    array of Physical Record Lock Info records (see below)
  5298.  
  5299. Format of Physical Record Lock Info:
  5300. Offset    Size    Description
  5301.  00h    BYTE    task number
  5302.  01h    BYTE    lock status (see below)
  5303.  02h    DWORD    (big-endian) starting offset of record in file
  5304.  06h    DWORD    (big-endian) ending offset of record in file
  5305.  
  5306. Bitfields for lock status:
  5307.  bit 0    exclusive lock
  5308.  bit 1    shareable lock
  5309.  bit 2    logged
  5310.  bit 6    lock held by TTS
  5311. --------N-21E3--SFDE-------------------------
  5312. INT 21 - Novell NetWare - FILE SERVER - GET PHYSICAL RECORD LOCKS BY FILE
  5313.     AH = E3h subfn DEh
  5314.     DS:SI -> request buffer (see below)
  5315.     ES:DI -> reply buffer (see below)
  5316. Return: AL = status
  5317.         00h successful
  5318.         C6h no console rights
  5319.         FFh file not open
  5320. Notes:    this function is supported by Advanced NetWare 2.1+
  5321.     the calling workstation must have console operator privileges
  5322. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DDh,AH=E3h/SF=DFh
  5323.  
  5324. Format of request buffer:
  5325. Offset    Size    Description
  5326.  00h    WORD    length of following data (max 104h)
  5327.  02h    BYTE    DEh (subfunction "Get Physical Record Locks by File")
  5328.  03h    WORD    (big-endian) last record seen (0000h on first call)
  5329.  05h    BYTE    directory handle
  5330.  06h    BYTE    length of filename
  5331.  07h  N BYTEs    ASCIZ filename
  5332.  
  5333. Format of reply buffer:
  5334. Offset    Size    Description
  5335.  00h    WORD    (call) size of following results record (max 1FEh)
  5336.  02h    WORD    next request record (place in "last record" on next call)
  5337.         0000h if no more records
  5338.  04h    BYTE    number of physical record locks
  5339.  05h    BYTE    number of records following
  5340.  06h    var    array of Physical Record Lock Info records (see below)
  5341.  
  5342. Format of Physical Record Lock Info:
  5343. Offset    Size    Description
  5344.  00h    WORD    (big-endian) number of tasks logging record
  5345.  02h    WORD    (big-endian) number of tasks with shareable lock
  5346.  04h    DWORD    (big-endian) starting offset of record in file
  5347.  08h    DWORD    (big-endian) ending offset of record in file
  5348.  0Ch    WORD    (big-endian) logical connection number
  5349.  0Eh    BYTE    task number
  5350.  0Fh    BYTE    lock type
  5351.         00h none
  5352.         FEh file lock
  5353.         FFh Begin Share File Set lock
  5354. --------N-21E3--SFDF-------------------------
  5355. INT 21 - Novell NetWare - FILE SERVER - GET LOGICAL RECORDS BY CONNECTION
  5356.     AH = E3h subfn DFh
  5357.     DS:SI -> request buffer (see below)
  5358.     ES:DI -> reply buffer (see below)
  5359. Return: AL = status
  5360.         00h successful
  5361.         C6h no console rights
  5362. Notes:    this function is supported by Advanced NetWare 2.1+
  5363.     the calling workstation must have console operator privileges
  5364. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DDh,AH=E3h/SF=E0h,AH=E3h/SF=E2h
  5365.  
  5366. Format of request buffer:
  5367. Offset    Size    Description
  5368.  00h    WORD    0005h (length of following data)
  5369.  02h    BYTE    DFh (subfunction "Get Logical Records By Connection")
  5370.  03h    WORD    (big-endian) logical connection number
  5371.  05h    WORD    (big-endian) last record seen (0000h on first call)
  5372.  
  5373. Format of reply buffer:
  5374. Offset    Size    Description
  5375.  00h    WORD    (call) size of following results record (max 1FEh)
  5376.  02h    WORD    next request record (place in "last record" field on next call)
  5377.         0000h if no more locked records
  5378.  09h    BYTE    number of records following
  5379.  0Ah    var    array of Logical Lock Information Records (see below)
  5380.  
  5381. Format of Logical Lock Information Record:
  5382. Offset    Size    Description
  5383.  00h    BYTE    task number
  5384.  01h    BYTE    lock status (see AH=E3h/SF=DDh)
  5385.  02h    BYTE    length of logical lock's name
  5386.  03h  N BYTEs    logical lock's name
  5387. --------N-21E3--SFE0-------------------------
  5388. INT 21 - Novell NetWare - FILE SERVER - GET LOGICAL RECORD INFORMATION
  5389.     AH = E3h subfn E0h
  5390.     DS:SI -> request buffer (see below)
  5391.     ES:DI -> reply buffer (see below)
  5392. Return: AL = status
  5393.         00h successful
  5394.         C6h no console rights
  5395. Notes:    this function is supported by Advanced NetWare 2.1+
  5396.     the calling workstation must have console operator privileges
  5397. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DDh,AH=E3h/SF=DFh,AH=E3h/SF=E2h
  5398.  
  5399. Format of request buffer:
  5400. Offset    Size    Description
  5401.  00h    WORD    length of following data (max 67h)
  5402.  02h    BYTE    E0h (subfunction "Get Logical Record Information")
  5403.  03h    WORD    (big-endian) last record seen (0000h on first call)
  5404.  05h    BYTE    length of logical record's name
  5405.  06h  N BYTEs    logical record's name
  5406.  
  5407. Format of reply buffer:
  5408. Offset    Size    Description
  5409.  00h    WORD    (call) size of following results record (max 200h)
  5410.  02h    WORD    (big-endian) number of logical connections logging the record
  5411.  04h    WORD    (big-endian) number of logical connections with shareable lock
  5412.  06h    WORD    (big-endian) next request record (place in "last record" field
  5413.             on next call)
  5414.  08h    BYTE    locked exclusively if nonzero
  5415.  09h    BYTE    number of records following
  5416.  0Ah    var    array of Task Information Records (see below)
  5417.  
  5418. Format of Task Information Record:
  5419. Offset    Size    Description
  5420.  00h    WORD    (big-endian) logical connection number
  5421.  02h    BYTE    task number
  5422.  03h    BYTE    lock status (see AH=E3h/SF=DDh)
  5423. --------N-21E3--SFE1-------------------------
  5424. INT 21 - Novell NetWare - FILE SERVER - GET CONNECTION'S SEMAPHORES
  5425.     AH = E3h subfn E1h
  5426.     DS:SI -> request buffer (see below)
  5427.     ES:DI -> reply buffer (see below)
  5428. Return: AL = status
  5429.         00h successful
  5430.         C6h no console rights
  5431. Notes:    this function is supported by Advanced NetWare 2.1+
  5432.     the calling workstation must have console operator privileges
  5433. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DBh,AH=E3h/SF=DFh,AH=E3h/SF=E2h
  5434.  
  5435. Format of request buffer:
  5436. Offset    Size    Description
  5437.  00h    WORD    0005h (length of following data)
  5438.  02h    BYTE    E1h (subfunction "Get Connection's Semaphores")
  5439.  03h    WORD    (big-endian) logical connection number
  5440.  05h    WORD    (big-endian) last record seen (0000h on first call)
  5441.  
  5442. Format of reply buffer:
  5443. Offset    Size    Description
  5444.  00h    WORD    (call) size of following results record (max 1FEh)
  5445.  02h    WORD    next request record (place in "last record" field on next call)
  5446.  04h    BYTE    number of records following
  5447.  05h    var    array of Semaphore Information Records
  5448.  
  5449. Format of Semaphore Information Record:
  5450. Offset    Size    Description
  5451.  00h    WORD    (big-endian) open count
  5452.  02h    BYTE    semaphore value (-128 to 127)
  5453.  03h    BYTE    task number
  5454.  04h    BYTE    lock type
  5455.  05h    BYTE    length of semaphore's name
  5456.  06h  N BYTEs    semaphore's name
  5457.      14 BYTEs    filename
  5458. --------N-21E3--SFE2-------------------------
  5459. INT 21 - Novell NetWare - FILE SERVER - GET SEMAPHORE INFORMATION
  5460.     AH = E3h subfn E2h
  5461.     DS:SI -> request buffer (see below)
  5462.     ES:DI -> reply buffer (see below)
  5463. Return: AL = status
  5464.         00h successful
  5465.         C6h no console rights
  5466. Notes:    this function is supported by Advanced NetWare 2.1+
  5467.     the calling workstation must have console operator privileges
  5468. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=E1h
  5469.  
  5470. Format of request buffer:
  5471. Offset    Size    Description
  5472.  00h    WORD    length of following data (max 83h)
  5473.  02h    BYTE    E2h (subfunction "Get LAN Driver's Configuration Information")
  5474.  03h    WORD    (big-endian) last record seen (0000h on first call)
  5475.  05h    BYTE    length of semaphore's name (01h-7Fh)
  5476.  06h  N BYTEs    semaphore's name
  5477.  
  5478. Format of reply buffer:
  5479. Offset    Size    Description
  5480.  00h    WORD    (call) size of following results buffer (max 1FEh)
  5481.  02h    WORD    next request record (place in "last record" on next call)
  5482.         0000h if no more
  5483.  04h    WORD    (big-endian) number of logical connections opening semaphore
  5484.  06h    BYTE    semaphore value (-127 to 128)
  5485.  07h    BYTE    number of records following
  5486.  08h    var    array of Semaphore Information records (see below)
  5487.  
  5488. Format of Semaphore Information:
  5489. Offset    Size    Description
  5490.  00h    WORD    (big-endian) logical connection number
  5491.  02h    BYTE    task number
  5492. --------N-21E3--SFE3-------------------------
  5493. INT 21 - Novell NetWare - FILE SERVER - GET LAN DRIVER'S CONFIGURATION INFO
  5494.     AH = E3h subfn E3h
  5495.     DS:SI -> request buffer (see below)
  5496.     ES:DI -> reply buffer (see below)
  5497. Return: AL = status
  5498.         00h successful
  5499.         C6h no console rights
  5500. Notes:    this function is supported by Advanced NetWare 2.1+
  5501.     the calling workstation must have console operator privileges
  5502. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=E7h,AH=E3h/SF=E8h
  5503.  
  5504. Format of request buffer:
  5505. Offset    Size    Description
  5506.  00h    WORD    0002h (length of following data)
  5507.  02h    BYTE    E3h (subfunction "Get LAN Driver's Configuration Information")
  5508.  03h    BYTE    LAN board (00h-03h)
  5509.  
  5510. Format of reply buffer:
  5511. Offset    Size    Description
  5512.  00h    WORD    (call) 00ACh (size of following results buffer)
  5513.  02h  4 BYTEs    network number
  5514.  06h  6 BYTEs    node number
  5515.  0Ch    BYTE    LAN driver installed (00h no--remaining fields invalid)
  5516.  0Dh    BYTE    option number selected at configuration time
  5517.  0Eh 160 BYTEs    configuration text
  5518.         ASCIZ hardware type
  5519.         ASCIZ hardware settings
  5520. --------N-21E3--SFE5-------------------------
  5521. INT 21 - Novell NetWare - FILE SERVER - GET CONNECTION'S USAGE STATISTICS
  5522.     AH = E3h subfn E5h
  5523.     DS:SI -> request buffer (see below)
  5524.     ES:DI -> reply buffer (see below)
  5525. Return: AL = status
  5526.         00h successful
  5527.         C6h no console rights
  5528. Notes:    this function is supported by Advanced NetWare 2.1+
  5529.     one must have console operator privileges to get statistics for logical
  5530.       connections other than one's own
  5531. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=DAh,AH=E3h/SF=DBh,AH=E3h/SF=E1h
  5532.  
  5533. Format of request buffer:
  5534. Offset    Size    Description
  5535.  00h    WORD    0003h (length of following data)
  5536.  02h    BYTE    E5h (subfunction "Get Connection's Usage Statistics")
  5537.  03h    WORD    (big-endian) logical connection number
  5538.  
  5539. Format of reply buffer:
  5540. Offset    Size    Description
  5541.  00h    WORD    (call) 0014h (size of following results record)
  5542.  02h    DWORD    (big-endian) clock ticks since server started
  5543.  06h  6 BYTEs    bytes read
  5544.  0Ch  6 BYTEs    bytes written
  5545.  12h    DWORD    (big-endian) total request packets
  5546. --------N-21E3--SFE6-------------------------
  5547. INT 21 - Novell NetWare - FILE SERVER - GET BINDERY OBJECT DISK SPACE LEFT
  5548.     AH = E3h subfn E6h
  5549.     DS:SI -> request buffer (see below)
  5550.     ES:DI -> reply buffer (see below)
  5551. Return: AL = status
  5552.         00h successful
  5553.         C6h no console rights
  5554. Notes:    this function is supported by Advanced NetWare 2.1+
  5555.     one must have console operator privileges to get the free space for
  5556.       other bindery objects
  5557. SeeAlso: AH=E3h/SF=C8h,AH=E3h/SF=E8h,AH=E3h/SF=E9h
  5558.  
  5559. Format of request buffer:
  5560. Offset    Size    Description
  5561.  00h    WORD    0005h (length of following data)
  5562.  02h    BYTE    E6h (subfunction "Get Bindery Object Disk Space Left")
  5563.  03h    DWORD    (big-endian) object ID
  5564.  
  5565. Format of reply buffer:
  5566. Offset    Size    Description
  5567.  00h    WORD    (call) 000Fh (size of following results buffer)
  5568.  02h    DWORD    (big-endian) clock ticks elapsed since server started
  5569.  06h    DWORD    (big-endian) object ID
  5570.  0Ah    DWORD    (big-endian) 4K disk blocks available to user
  5571.  0Eh    BYTE    restrictions (00h enforced, FFh not enforced)
  5572. --------N-21E3--SFE7-------------------------
  5573. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER LAN I/O STATISTICS
  5574.     AH = E3h subfn E7h
  5575.     DS:SI -> request buffer (see below)
  5576.     ES:DI -> reply buffer (see below)
  5577. Return: AL = status
  5578.         00h successful
  5579. Note:    this function is supported by Advanced NetWare 2.1+
  5580. SeeAlso: AH=E3h/SF=0Eh,AH=E3h/SF=11h,AH=E3h/SF=D3h,AH=E3h/SF=E8h,AH=E7h
  5581.  
  5582. Format of request buffer:
  5583. Offset    Size    Description
  5584.  00h    WORD    0001h (length of following data)
  5585.  02h    BYTE    E7h (subfunction "Get File Server LAN I/O Statistics")
  5586.  
  5587. Format of reply buffer:
  5588. Offset    Size    Description
  5589.  00h    WORD    (call) 0042h (size of following results buffer)
  5590.  02h    DWORD    clock ticks since system started
  5591.  06h    WORD    total routing buffers
  5592.  08h    WORD    maximum routing buffers used
  5593.  0Ah    WORD    current routing buffers used
  5594.  0Ch    DWORD    total file service packets
  5595.  10h    WORD    number of file service packets buffered
  5596.  12h    WORD    number of invalid connection packets
  5597.  14h    WORD    packets with bad logical connection numbers
  5598.  16h    WORD    number of packets received during processing
  5599.  18h    WORD    number of requests reprocessed
  5600.  1Ah    WORD    packets with bad sequence numbers
  5601.  1Ch    WORD    number of duplicate replies sent
  5602.  1Eh    WORD    number of acknowledgements sent
  5603.  20h    WORD    number of packets with bad request types
  5604.  22h    WORD    requests to attach to ws for which a request is being processed
  5605.  24h    WORD    requests to attach from ws which is already attaching
  5606.  26h    WORD    number of forged detach requests
  5607.  28h    WORD    detach requests with bad connection number
  5608.  2Ah    WORD    requests to detach from ws for which requests pending
  5609.  2Ch    WORD    number of cancelled replies
  5610.  2Eh    WORD    packets discarded due to excessive hop count
  5611.  30h    WORD    packets discarded due to unknown net
  5612.  32h    WORD    incoming packets discarded for lack of DGroup buffer
  5613.  34h    WORD    outgoing packets discarded due to lack of buffer
  5614.  36h    WORD    received packets destined for B,C, or D side drivers
  5615.  38h    DWORD    number of NetBIOS packets propagated through net
  5616.  3Ch    DWORD    total number of non-file-service packets
  5617.  40h    DWORD    total number of routed packets
  5618. Note:    all fields except the first are big-endian
  5619. --------N-21E3--SFE8-------------------------
  5620. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER MISC INFORMATION
  5621.     AH = E3h subfn E8h
  5622.     DS:SI -> request buffer (see below)
  5623.     ES:DI -> reply buffer (see below)
  5624. Return: AL = status
  5625.         00h successful
  5626.         C6h no console rights
  5627. Note:    this function is supported by Advanced NetWare 2.1+
  5628. SeeAlso: AH=E3h/SF=0Eh,AH=E3h/SF=11h,AH=E3h/SF=CDh,AH=E3h/SF=E7h
  5629.  
  5630. Format of request buffer:
  5631. Offset    Size    Description
  5632.  00h    WORD    0001h (length of following data)
  5633.  02h    BYTE    E8h (subfunction "Get File Server Misc Information")
  5634.  
  5635. Format of reply buffer:
  5636. Offset    Size    Description
  5637.  00h    WORD    (call) size of following results buffer (max 0048h)
  5638.  02h    DWORD    (big-endian) clock ticks since system started
  5639.  06h    BYTE    CPU type
  5640.         00h Motorola 68000
  5641.         01h Intel 8086, 8088, or V20
  5642.         02h Intel 80286+
  5643.  07h    BYTE    reserved
  5644.  08h    BYTE    number of service processes in server
  5645.  09h    BYTE    server utilization in percent
  5646.  0Ah    WORD    (big-endian) maximum bindery objects set by configuration
  5647.         0000h = unlimited
  5648.  0Ch    WORD    (big-endian) maximum number of bindery objects used
  5649.  0Eh    WORD    (big-endian) current number of bindery objects in use
  5650.  10h    WORD    (big-endian) total server memory in KB
  5651.  12h    WORD    (big-endian) wasted server memory in KB
  5652.         normally 0000h
  5653.  14h    WORD    number of records following (01h-03h)
  5654.  16h    var    array of Dynamic Memory Information records (see below)
  5655.  
  5656. Format of Dynamic Memory Information:
  5657. Offset    Size    Description
  5658.  00h    DWORD    (big-endian) total dynamic space
  5659.  04h    DWORD    (big-endian) maximum dynamic space used
  5660.  08h    DWORD    (big-endian) current dynamic space usage
  5661. --------N-21E3--SFE9-------------------------
  5662. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET VOLUME INFORMATION
  5663.     AH = E3h subfn E9h
  5664.     DS:SI -> request buffer (see below)
  5665.     ES:DI -> reply buffer (see below)
  5666. Return: AL = status
  5667.         00h successful
  5668. Notes:    this function is supported by Advanced NetWare 2.1+
  5669. SeeAlso: AH=DAh,AH=E2h/SF=15h
  5670.  
  5671. Format of request buffer:
  5672. Offset    Size    Description
  5673.  00h    WORD    0002h (length of following data)
  5674.  02h    BYTE    E9h (subfunction "Get Volume Information")
  5675.  03h    BYTE    directory handle
  5676.  
  5677. Format of reply buffer:
  5678. Offset    Size    Description
  5679.  00h    WORD    (call) 0028h (length of following results buffer)
  5680.  02h    DWORD    (big-endian) elapsed system time
  5681.  06h    BYTE    volume number
  5682.  07h    BYTE    logical drive number
  5683.  08h    WORD    (big-endian) sectors per block
  5684.  0Ah    WORD    (big-endian) starting block
  5685.  0Ch    WORD    (big-endian) total blocks on volume
  5686.  0Eh    WORD    (big-endian) blocks available on volume
  5687.  10h    WORD    (big-endian) total directory slots
  5688.  12h    WORD    (big-endian) directory slots available
  5689.  14h    WORD    (big-endian) maximum directory entries actually used
  5690.  16h    BYTE    flag: volume hashed if nonzero
  5691.  17h    BYTE    flag: volume cached if nonzero
  5692.  18h    BYTE    flag: volume removable if nonzero
  5693.  19h    BYTE    flag: volume mounted if nonzero
  5694.  1Ah 16 BYTEs    NUL-padded volume name
  5695. --------N-21E4-------------------------------
  5696. INT 21 O - Novell NetWare - SET FILE ATTRIBUTES (FCB)
  5697.     AH = E4h
  5698.     CL = file attributes (see below)
  5699.     DX:DX -> FCB (see AH=0Fh)
  5700. Return: AL = error code
  5701. Note:    this function was added in NetWare 4.0, but was removed some time prior
  5702.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  5703.       documentation
  5704. SeeAlso: AX=4301h
  5705.  
  5706. Bitfields for file attributes:
  5707.  bit 0    read only
  5708.  bit 1    hidden
  5709.  bit 2    system
  5710.  bit 7    shareable
  5711. --------v-21E4-------------------------------
  5712. INT 21 - VIRUS - "Anarkia" - INSTALLATION CHECK
  5713.     AH = E4h
  5714. Return: AH = 04h if resident
  5715. SeeAlso: AH=E1h"VIRUS",AH=E7h"VIRUS"
  5716. --------T-21E400-----------------------------
  5717. INT 21 - DoubleDOS - INSTALLATION CHECK/PROGRAM STATUS
  5718.     AX = E400h
  5719. Return: AL = 00h if DoubleDOS not present
  5720.        = 01h if running in visible DoubleDOS partition
  5721.        = 02h if running in the invisible DoubleDOS partition
  5722. SeeAlso: AH=E5h"DoubleDOS",AX=F400h
  5723. --------E-21E400-----------------------------
  5724. INT 21 - OS/286, OS/386 - CHAIN TO REAL-MODE HANDLER
  5725.     AX = E400h
  5726.     ???
  5727. Return: ???
  5728. Note:    protected mode only???
  5729. --------E-21E402-----------------------------
  5730. INT 21 - OS/286, OS/386 - SET PROTECTED-MODE TASK GATE
  5731.     AX = E402h
  5732.     ???
  5733. Return: ???
  5734. Note:    protected mode only???
  5735. SeeAlso: AX=E403h
  5736. --------E-21E403-----------------------------
  5737. INT 21 - OS/286, OS/386 - REMOVE PROTECTED-MODE TASK GATE
  5738.     AX = E403h
  5739.     ???
  5740. Return: ???
  5741. Note:    protected mode only???
  5742. SeeAlso: AX=E402h
  5743. --------N-21E5-------------------------------
  5744. INT 21 O - Novell NetWare - UPDATE FILE SIZE (FCB)
  5745.     AH = E5h
  5746.     DS:DX -> FCB (see AH=0Fh)
  5747. Return: AL = (unreliable) return code
  5748. Notes:    this function was added in NetWare 4.0, but was removed some time prior
  5749.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  5750.       documentation
  5751.     on success, NetWare sets AL to zero; on errors it restores AL
  5752. --------T-21E5-------------------------------
  5753. INT 21 - DoubleDOS - OTHER PROGRAM STATUS
  5754.     AH = E5h
  5755. Return: AL = 00h no program in other partition
  5756.        = 01h program in other partition is running
  5757.        = 02h program in other partition is suspended
  5758. SeeAlso: AX=E400h"DoubleDOS",AH=F5h"DoubleDOS"
  5759. --------E-21E500-----------------------------
  5760. INT 21 - OS/286, OS/386 - HEAP MANAGEMENT STRATEGY
  5761.     AX = E500h
  5762.     ???
  5763. Return: ???
  5764. SeeAlso: AX=E501h
  5765. --------E-21E501-----------------------------
  5766. INT 21 - OS/286, OS/386 - FORCE HEAP COMPACTION
  5767.     AX = E501h
  5768.     ???
  5769. Return: ???
  5770. SeeAlso: AX=E500h
  5771. --------N-21E6-------------------------------
  5772. INT 21 O - Novell NetWare - COPY FILE TO FILE (FCB)
  5773.     AH = E6h
  5774.     CX:DX = number of bytes to copy
  5775.     DS:SI -> opened source FCB
  5776.     ES:DI -> opened destination FCB
  5777. Return: AL = error code
  5778.     CX = ???
  5779.     DX = ???
  5780. Note:    this function was added in NetWare 4.0, but was removed some time prior
  5781.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  5782.       documentation
  5783. --------E-21E6-------------------------------
  5784. INT 21 P - OS/286, OS/386 - ISSUE REAL PROCEDURE SIGNAL FROM PROTECTED MODE
  5785.     AH = E6h
  5786.     ???
  5787. Return: ???
  5788. SeeAlso: AH=E2h"OS/286"
  5789. --------N-21E7-------------------------------
  5790. INT 21 - Novell NetWare - FILE SERVER - GET FILE SERVER DATE AND TIME
  5791.     AH = E7h
  5792.     DS:DX -> date/time buffer (see below)
  5793. Return: AL = error code
  5794.         00h successful
  5795.         FFh unsuccessful
  5796. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+,
  5797.       Alloy NTNX, and Banyan VINES
  5798. SeeAlso: AH=2Ah,AH=2Ch,AX=5FC0h,AH=E3h/SF=CAh
  5799.  
  5800. Format of date/time buffer:
  5801. Offset    Size    Description
  5802.  00h    BYTE    year (80-99 = 1980-1999, 0-79 = 2000-2079)
  5803.  01h    BYTE    month (1=Jan)
  5804.  02h    BYTE    day
  5805.  03h    BYTE    hours
  5806.  04h    BYTE    minutes
  5807.  05h    BYTE    seconds
  5808.  06h    BYTE    day of week (0 = Sunday) (Novell and NTNX only)
  5809. --------E-21E7-------------------------------
  5810. INT 21 - OS/286, OS/386 - CREATE CODE SEGMENT
  5811.     AH = E7h
  5812.     ???
  5813. Return: ???
  5814. SeeAlso: AH=E8h"OS/286",AH=E9h"OS/286",AH=EAh"OS/286"
  5815. --------v-21E7-------------------------------
  5816. INT 21 - VIRUS - "Spyer"/"Kiev" - INSTALLATION CHECK
  5817.     AH = E7h
  5818. Return: AH = 78h if resident
  5819. SeeAlso: AH=E4h"VIRUS",AX=EC59h
  5820. --------N-21E8-------------------------------
  5821. INT 21 O - Novell NetWare, Alloy NTNX - SET FCB RE-OPEN MODE
  5822.     AH = E8h
  5823.     DL = mode
  5824.         00h no automatic re-open
  5825.         01h auto re-open
  5826. Return: AL = error code
  5827. Desc:    provided backward compatibility with a bug in CP/M and early DOS vers
  5828. Note:    this function was added in NetWare 4.6, but was removed some time prior
  5829.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  5830.       documentation
  5831. --------E-21E8-------------------------------
  5832. INT 21 - OS/286, OS/386 - SEGMENT CREATION
  5833.     AH = E8h
  5834.     AL = type
  5835.         00h data segment
  5836.         01h data window/alias
  5837.         02h real segment
  5838.         03h real window/alias
  5839.         06h shareable segment
  5840.     ???
  5841. Return: ???
  5842. SeeAlso: AH=E7h"OS/286",AH=E9h"OS/286"
  5843. --------T-21E8-------------------------------
  5844. INT 21 - DoubleDOS - SET/RESET KEYBOARD CONTROL FLAGS
  5845.     AH = E8h
  5846.     AL = 00h set flags for this program
  5847.        = 01h set flags for other program
  5848.     DX = keyboard control flags (see below)
  5849. Return: DX = previous flags
  5850. Notes:    disabling Ctrl-PrtSc will allow the program to intercept the keystroke;
  5851.       disabling any of the other keystrokes disables them completely
  5852.     identical to AH=F8h
  5853. SeeAlso: AH=E1h"DoubleDOS",AH=E2h"DoubleDOS",AH=E3h"DoubleDOS"
  5854. SeeAlso: AH=F8h"DoubleDOS"
  5855.  
  5856. Bitfields for keyboard control flags:
  5857.  bit 0    menu
  5858.  bit 1    exchange
  5859.  bit 2    entire keyboard enable/disable
  5860.  bit 3    Ctrl-C
  5861.  bit 4    Ctrl-PrtSc
  5862.  bit 5    Alt/Erase
  5863.  bit 6    Ctrl-Break
  5864.  bit 7    Ctrl-NumLock
  5865.  bit 8    shift-PrtSc
  5866.  bit 9-13 undefined
  5867.  bit 14 cancel key (clear keyboard buffer)
  5868.  bit 15 suspend key
  5869. Note:    setting a bit enables the corresponding key or operatin, clearing a
  5870.       bit disables it
  5871. --------E-21E9-------------------------------
  5872. INT 21 P - OS/286, OS/386 - CHANGE SEGMENTS
  5873.     AH = E9h
  5874.     AL = function
  5875.         01h change code segment parameters
  5876.         02h change data segment parameters
  5877.         05h adjust segment limit
  5878.         06h change segment base address
  5879.     ???
  5880. Return: ???
  5881. SeeAlso: AH=E7h"OS/286",AH=E8h"OS/286",AH=EAh"OS/286",AH=EDh"OS/286"
  5882. SeeAlso: INT 31/AX=0007h,INT 31/AX=0008h
  5883. --------T-21E9-------------------------------
  5884. INT 21 - DoubleDOS - SET TIMESHARING PRIORITY
  5885.     AH = E9h
  5886.     AL = 00h visible program gets 70%, invisible gets 30% (default)
  5887.        = 01h visible program gets 50%, invisible gets 50%
  5888.        = 02h visible program gets 30%, invisible gets 70%
  5889.        = 03h Top program gets 70%, bottom program gets 30%
  5890.        = 04h Top program gets 30%, bottom program gets 70%
  5891.        = 05h get current priority
  5892.         Return: AL = priority setting
  5893. Note:    identical to AH=F9h
  5894. SeeAlso: AH=EAh"DoubleDOS",AH=EBh"DoubleDOS",AH=F9h"DoubleDOS"
  5895. --------N-21E900-----------------------------
  5896. INT 21 - Novell NetWare - DIRECTORY SERVICES - GET DIRECTORY HANDLE
  5897.     AX = E900h
  5898.     DX = drive number to check (0 = A:, ..., 25 = Z:, 26 ... 31)
  5899. Return: AL = directory handle
  5900.     AH = flags (drive not mapped if none set)
  5901.         bit 0: permanent handle
  5902.         bit 1: temporary handle
  5903.         bit 7: mapped to local drive
  5904. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  5905.       Alloy NTNX
  5906. SeeAlso: AH=E2h/SF=00h,AH=E2h/SF=01h,AH=E2h/SF=0Ah
  5907. --------N-21E905-----------------------------
  5908. INT 21 - Novell NetWare shell 3.01 - MAP A FAKE ROOT DIRECTORY
  5909.     AX = E905h
  5910.     BL = drive number (0=default, 1=A:, ...)
  5911.     DS:DX -> ASCIZ path for fake root (may include server name or be empty)
  5912. Return: CF set on error
  5913.         AL = error code (03h,0Fh,11h) (see AH=59h)
  5914.     CF clear if successful
  5915. Note:    if drive is not currently mapped, a drive mapping will be created
  5916. SeeAlso: AX=E906h
  5917. --------N-21E906-----------------------------
  5918. INT 21 - Novell NetWare shell 3.01 - DELETE FAKE ROOT DIRECTORY
  5919.     AX = E906h
  5920.     BL = drive number (0=default, 1=A:, ...)
  5921. Note:    drive remains mapped
  5922. SeeAlso: AX=E905h
  5923. --------N-21E907-----------------------------
  5924. INT 21 - Novell NetWare shell 3.01 - GET RELATIVE DRIVE DEPTH
  5925.     AX = E907h
  5926.     BL = drive number (0=default, 1=A:, ...)
  5927. Return: AL = number of directories below the fake root
  5928.         FFh if no fake root assigned
  5929. SeeAlso: AX=E905h
  5930. --------N-21E908BL00-------------------------
  5931. INT 21 - Novell NetWare shell 3.01 - SET SHOW DOTS
  5932.     AX = E908h
  5933.     BL = 00h    don't return '.' or '..' during directory scans
  5934.        = nonzero    directory scans will return '.' or '..' entries
  5935. Return: BL = previous show-dots setting
  5936. --------N-21EA-------------------------------
  5937. INT 21 - Novell NetWare, Alloy NTNX - RETURN SHELL VERSION
  5938.     AH = EAh
  5939.     AL = return version environment string
  5940.         00h        don't return string
  5941.         nonzero    return string in 40-byte buffer pointed to by ES:DI
  5942.         Return: buffer filled with three null-terminated entries:
  5943.             major operating system
  5944.             version
  5945.             hardware type
  5946. Return: AH = operating system (00h = MS-DOS)
  5947.     AL = hardware type
  5948.         00h IBM PC
  5949.         01h Victor 9000
  5950.     BH = major shell version
  5951.     BL = minor shell version
  5952.     CH = (v3.01+) shell type
  5953.         00h conventional memory
  5954.         01h expanded memory
  5955.         02h extended memory
  5956.     CL = shell revision number
  5957. Note:    this function is supported by NetWare 4.6 and Advanced NetWare 1.0+
  5958. --------T-21EA-------------------------------
  5959. INT 21 - DoubleDOS - TURN OFF TASK SWITCHING
  5960.     AH = EAh
  5961. Return: task switching turned off
  5962. SeeAlso: AH=E9h"DoubleDOS",AH=EBh"DoubleDOS",AH=FAh"DoubleDOS"
  5963. SeeAlso: INT FA"DoubleDOS"
  5964. --------E-21EA-------------------------------
  5965. INT 21 - OS/286, OS/386 - ALLOCATE HUGE SEGMENT
  5966.     AH = EAh
  5967.     ???
  5968. Return: ???
  5969. Note:    protected mode only???
  5970. SeeAlso: AH=E7h"OS/286",AH=E8h"OS/286",AH=E9h"OS/286"
  5971. --------N-21EB-------------------------------
  5972. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOG FILE
  5973.     AH = EBh
  5974.     DS:DX -> ASCIZ filename
  5975.     if function C6h lock mode 01h:
  5976.         AL = flags
  5977.         00h log file only
  5978.         01h lock as well as log file
  5979.             BP = lock timeout in timer ticks (1/18 second)
  5980.             0000h = don't wait if file already locked
  5981. Return: AL = error code
  5982.         00h successful
  5983.         96h no dynamic memory for file
  5984.         FEh timed out
  5985.         FFh failed
  5986. Desc:    add the location and size of the specified file to the log table and
  5987.       optionally lock the file
  5988. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  5989.       Alloy NTNX
  5990. SeeAlso: AH=BCh"NetWare",AH=CAh,AH=D0h,AH=ECh"NetWare",AH=EDh"NetWare"
  5991. --------T-21EB-------------------------------
  5992. INT 21 - DoubleDOS - TURN ON TASK SWITCHING
  5993.     AH = EBh
  5994. Return: task switching turned on
  5995. SeeAlso: AH=E9h"DoubleDOS",AH=EAh"DoubleDOS",AH=FBh"DoubleDOS"
  5996. SeeAlso: INT FB"DoubleDOS"
  5997. --------E-21EB00-----------------------------
  5998. INT 21 - OS/386 VMM - GET A PAGE TABLE ENTRY BY LINEAR ADDRESS
  5999.     AX = EB00h
  6000.     ???
  6001. Return: ???
  6002. Note:    protected mode only???
  6003. SeeAlso: AX=EB02h,AX=EB04h,INT 31/AX=0506h
  6004. --------E-21EB02-----------------------------
  6005. INT 21 - OS/386 VMM - GET A PAGE TABLE ENTRY BY 16-BIT SEGMENT:OFFSET
  6006.     AX = EB02h
  6007.     ???
  6008. Return: ???
  6009. Note:    protected mode only???
  6010. SeeAlso: AX=EB00h,AX=EB04h
  6011. --------E-21EB03-----------------------------
  6012. INT 21 - OS/386 VMM - FREE MAPPED PAGES
  6013.     AX = EB03h
  6014.     ???
  6015. Return: ???
  6016. Note:    protected mode only???
  6017. SeeAlso: AX=EB05h,INT 31/AX=0801h
  6018. --------E-21EB04-----------------------------
  6019. INT 21 - OS/386 VMM - GET A PAGE TABLE ENTRY BY 32-BIT SEGMENT:OFFSET
  6020.     AX = EB04h
  6021.     ???
  6022. Return: ???
  6023. Note:    protected mode only???
  6024. SeeAlso: AX=EB00h,AX=EB02h
  6025. --------E-21EB05-----------------------------
  6026. INT 21 - OS/386 VMM - MAP PAGES
  6027.     AX = EB05h
  6028.     ???
  6029. Return: ???
  6030. Note:    protected mode only???
  6031. SeeAlso: AX=EB03h,INT 31/AX=0800h
  6032. --------E-21EB06-----------------------------
  6033. INT 21 - OS/386 VMM - LOCK PAGES IN MEMORY
  6034.     AX = EB06h
  6035.     ???
  6036. Return: ???
  6037. Note:    protected mode only???
  6038. SeeAlso: AX=EB07h,INT 31/AX=0600h
  6039. --------E-21EB07-----------------------------
  6040. INT 21 - OS/386 VMM - UNLOCK MEMORY PAGES
  6041.     AX = EB07h
  6042.     ???
  6043. Return: ???
  6044. Note:    protected mode only???
  6045. SeeAlso: AX=EB06h,INT 31/AX=0601h
  6046. --------N-21EC-------------------------------
  6047. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE FILE
  6048.     AH = ECh
  6049.     DS:DX -> ASCIZ filename
  6050. Return: AL = status
  6051.         00h successful
  6052.         FFh file not found
  6053. Desc:    unlock the specified file but retain it in the log table
  6054. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  6055.       Alloy NTNX
  6056. SeeAlso: AH=CDh,AH=EBh"NetWare",AH=EDh"NetWare"
  6057. --------T-21EC-------------------------------
  6058. INT 21 - DoubleDOS - GET VIRTUAL SCREEN ADDRESS
  6059.     AH = ECh
  6060. Return: ES = segment of virtual screen
  6061. Desc:    determine the address of the virtual screen to which the program
  6062.       should write instead of the actual video memory, so that the
  6063.       multitasked programs do not interfere with each other's output
  6064. Notes:    screen address can change if task-switching is on!!
  6065.     identical to AH=FCh
  6066. SeeAlso: INT 10/AH=FEh,AH=FCh"DoubleDOS",INT FC"DoubleDOS"
  6067. --------E-21EC-------------------------------
  6068. INT 21 - OS/286, OS/386 - BLOCK TRANSFER
  6069.     AH = ECh
  6070.     ???
  6071. Return: ???
  6072. --------v-21EC59-----------------------------
  6073. INT 21 - VIRUS - "Terror" - INSTALLATION CHECK
  6074.     AX = EC59h
  6075. Return: BP = EC59h if resident
  6076. SeeAlso: AH=E7h"VIRUS",AH=EEh"VIRUS"
  6077. --------N-21ED-------------------------------
  6078. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR FILE
  6079.     AH = EDh
  6080.     DS:DX -> ASCIZ filename
  6081. Return: AL = status
  6082.         00h successful
  6083.         FFh no files found
  6084. Desc:    unlock the file and remove it from the log table
  6085. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  6086.       Alloy NTNX
  6087. SeeAlso: AH=CBh"NetWare",AH=CEh,AH=CFh,AH=EBh"NetWare",AH=ECh"NetWare"
  6088. --------E-21ED-------------------------------
  6089. INT 21 - OS/286, OS/386 - GET SEGMENT OR WINDOW DESCRIPTOR
  6090.     AH = EDh
  6091.     ???
  6092. Return: ???
  6093. Note:    protected mode only???
  6094. SeeAlso: AH=E9h"OS/286"
  6095. --------N-21EE-------------------------------
  6096. INT 21 - Novell NetWare - CONNECTION SERVICES - GET PHYSICAL STATION ADDRESS
  6097.     AH = EEh
  6098. Return: CX:BX:AX = six-byte physical address
  6099. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  6100.       Alloy NTNX
  6101. SeeAlso: AH=E3h/SF=13h
  6102. --------T-21EE-------------------------------
  6103. INT 21 - DoubleDOS - GIVE AWAY TIME TO OTHER TASKS
  6104.     AH = EEh
  6105.     AL = number of 55ms time slices to give away
  6106. Return: returns after giving away time slices
  6107. SeeAlso: AH=FEh"DoubleDOS",INT FE"DoubleDOS"
  6108. --------v-21EE-------------------------------
  6109. INT 21 - VIRUS - "Jerusalem-G", "Pregnant" - INSTALLATION CHECK
  6110.     AH = EEh
  6111. Return: AX = 0300h if "Jerusalem-G" resident
  6112.     AL = 05h if "Pregnant" resident
  6113. SeeAlso: AH=DDh"VIRUS",AX=EC59h,AH=F0h"VIRUS"
  6114. --------N-21EF00-----------------------------
  6115. INT 21 - Novell NetWare - WORKSTATION - GET DRIVE HANDLE TABLE
  6116.     AX = EF00h
  6117. Return: ES:SI -> network shell's 32-byte drive handle table
  6118.     AX = 0000h
  6119. Notes:    this function is supported by Advanced NetWare 1.0+
  6120.     each byte in the drive handle table contains the directory handle for
  6121.       the corresponding drive, or 00h if not mapped to a directory
  6122. SeeAlso: AX=EF01h,AX=EF02h,AX=EF03h,AX=EF04h
  6123. --------N-21EF01-----------------------------
  6124. INT 21 - Novell NetWare - WORKSTATION - GET DRIVE FLAG TABLE
  6125.     AX = EF01h
  6126. Return: ES:SI -> network shell's 32-byte drive flag table (see below)
  6127.     AX = 0000h
  6128. Notes:    this function is supported by Advanced NetWare 1.0+
  6129.     each byte in the drive flag table corresponds to a drive
  6130. SeeAlso: AX=EF00h,AX=EF02h,AX=EF03h
  6131.  
  6132. Values in drive flag table:
  6133.  00h    drive is not mapped
  6134.  01h    permanent network drive
  6135.  02h    temporary network drive
  6136.  80h    mapped to local drive
  6137.  81h    local drive used as permanent network drive
  6138.  82h    local drive used as temporary network drive
  6139. --------N-21EF02-----------------------------
  6140. INT 21 - Novell NetWare - WORKSTATION - GET DRIVE CONNECTION ID TABLE
  6141.     AX = EF02h
  6142. Return: ES:SI -> network shell's 32-byte drive conection ID table
  6143.     AX = 0000h
  6144. Notes:    this function is supported by Advanced NetWare 1.0+
  6145.     each byte in the connection ID table corresponds to a drive and
  6146.       contains either the connection ID (1-8) of the server for that drive
  6147.       or 00h if the drive is not mapped to a file server
  6148. SeeAlso: AX=EF01h,AX=EF03h,AX=F002h
  6149. --------N-21EF03-----------------------------
  6150. INT 21 - Novell NetWare - WORKSTATION - GET CONNECTION ID TABLE
  6151.     AX = EF03h
  6152. Return: ES:SI -> network shell's connection ID table (see below)
  6153.     AX = 0000h
  6154. Note:    this function is supported by Advanced NetWare 1.0+
  6155. SeeAlso: AX=EF00h,AX=EF02h,AX=EF04h,AX=F002h
  6156.  
  6157. Format of connection ID table [one entry of eight-element array]:
  6158. Offset    Size    Description
  6159.  00h    BYTE    in use flag
  6160.         E0h AES temporary
  6161.         F8h IPX in critical section
  6162.         FAh processing
  6163.         FBh holding
  6164.         FCh AES waiting
  6165.         FDh waiting
  6166.         FEh receiving
  6167.         FFh sending
  6168.  01h    BYTE    order number assigned to server (1-8)
  6169.  02h    DWORD    (big-endian) file server's network address
  6170.  06h  6 BYTEs    (big-endian) file server's node address
  6171.  0Ch    WORD    (big-endian) socket number
  6172.  0Eh    WORD    (big-endian) base receive timeout in clock ticks
  6173.  10h  6 BYTEs    (big-endian) preferred routing node
  6174.  16h    BYTE    packet sequence number
  6175.  17h    BYTE    connection number (FFh = no connection)
  6176.  18h    BYTE    connection status (00h if active)
  6177.  19h    WORD    (big-endian) maximum receive timeout in clock ticks
  6178.  1Bh  5 BYTEs    reserved
  6179. --------N-21EF04-----------------------------
  6180. INT 21 - Novell NetWare - WORKSTATION - GET FILE SERVER NAME TABLE
  6181.     AX = EF04h
  6182. Return: ES:SI -> network shell's file server name table (see below)
  6183.     AX = 0000h
  6184. Notes:    this function is supported by Advanced NetWare 1.0+
  6185.     the name table consists of eight 48-byte entries, each consisting of
  6186.       an ASCIZ server name for the corresponding entry in the connection
  6187.       ID table
  6188. SeeAlso: AX=EF03h
  6189. --------T-21F0-------------------------------
  6190. INT 21 - DoubleDOS - MENU CONTROL
  6191.     AH = F0h
  6192.     AL = subfunction
  6193.         01h exchange tasks
  6194.         73h resume invisible job if suspended
  6195.         74h kill other job
  6196.         75h suspend invisible job
  6197. Note:    identical to AH=E0h
  6198. SeeAlso: AH=E0h"DoubleDOS"
  6199. --------v-21F0-------------------------------
  6200. INT 21 - VIRUS - "Frere Jacques" - INSTALLATION CHECK
  6201.     AH = F0h
  6202. Return: AX = 0300h if resident
  6203. SeeAlso: AH=EEh"VIRUS",AH=F1h"VIRUS"
  6204. --------N-21F000-----------------------------
  6205. INT 21 - Novell NetWare - WORKSTATION - SET PREFERRED CONNECTION ID
  6206.     AX = F000h
  6207.     DL = connection ID of prefered file server (1-8) or 00h for none
  6208. Notes:    this function is supported by Advanced NetWare 1.0+
  6209.     the preferred connection ID is set to 00h by the shell on EOJ
  6210. SeeAlso: AH=D6h,AX=EF03h,AX=F001h,AX=F002h,AX=F005h
  6211. --------N-21F001-----------------------------
  6212. INT 21 - Novell NetWare - WORKSTATION - GET PREFERRED CONNECTION ID
  6213.     AX = F001h
  6214. Return: AL = connection ID of preferred file server (1-8), 00h if not set
  6215. Notes:    this function is supported by Advanced NetWare 1.0+
  6216.     the preferred connection ID is set to 00h by the shell on EOJ
  6217. SeeAlso: AH=D6h,AX=EF03h,AX=F000h,AX=F002h,AX=F005h
  6218. --------N-21F002-----------------------------
  6219. INT 21 - Novell NetWare - WORKSTATION - GET DEFAULT CONNECTION ID
  6220.     AX = F002h
  6221. Return: AL = connection ID of current default file server (1-8) (see AX=EF03h)
  6222. Note:    this function is supported by Advanced NetWare 1.0+
  6223. SeeAlso: AX=EF03h,AX=F000h,AX=F004h
  6224. --------N-21F003-----------------------------
  6225. INT 21 - Novell NetWare - PRINT SERVICES - GET LPT CAPTURE STATUS
  6226.     AX = F003h
  6227. Return: AH = status
  6228.         00h not active
  6229.         FFh active
  6230.         AL = connection ID (01h-08h)
  6231. Note:    this function is supported by Advanced NetWare 1.0+
  6232. SeeAlso: AX=B800h,AX=B804h,AH=DFh/DL=00h,AH=DFh/DL=04h
  6233. --------N-21F004-----------------------------
  6234. INT 21 - Novell NetWare - WORKSTATION - SET PRIMARY CONNECTION ID
  6235.     AX = F004h
  6236.     DL = connection ID of primary file server (1-8) or 00h for none
  6237. Note:    this function is supported by Advanced NetWare 2.0+
  6238. SeeAlso: AH=D6h,AX=EF03h,AX=F000h,AX=F002h,AX=F005h
  6239. --------N-21F005-----------------------------
  6240. INT 21 - Novell NetWare - WORKSTATION - GET PRIMARY CONNECTION ID
  6241.     AX = F005h
  6242. Return: AL = connection ID of primary file server (1-8), 00h if not set
  6243. Notes:    this function is supported by Advanced NetWare 2.0+
  6244.     by default, the primary file server is the one from which the login
  6245.       script executed; it is set to 00h if the workstation is not logged in
  6246.       and when it detaches from its primary file server
  6247. SeeAlso: AH=D6h,AX=EF03h,AX=F000h,AX=F002h,AX=F004h
  6248. --------N-21F1-------------------------------
  6249. INT 21 - Novell NetWare - CONNECTION SERVICES - FILE SERVER CONNECTION
  6250.     AH = F1h
  6251.     AL = subfunction
  6252.         00h attach to file server
  6253.         DL = preferred file server (01h-08h)
  6254.         01h detach from file server
  6255.         DL = connection ID
  6256.         02h logout from file server
  6257.         DL = connection ID
  6258. Return: AL = status
  6259.         00h successful
  6260.         F8h already attached to server
  6261.         F9h connection table full
  6262.         FAh no more server slots
  6263.         FCh unknown file server
  6264.         FEh server bindery locked
  6265.         FFh no response from server, or connection does not exist
  6266. Note:    these functions are supported by Advanced NetWare 1.0+
  6267. SeeAlso: AH=D7h"NetWare",AH=E3h/SF=14h
  6268. --------T-21F1-------------------------------
  6269. INT 21 - DoubleDOS - CLEAR KEYBOARD BUFFER FOR CURRENT JOB
  6270.     AH = F1h
  6271. SeeAlso: AH=E1h"DoubleDOS",AH=F2h"DoubleDOS",AH=F3h"DoubleDOS"
  6272. SeeAlso: AH=F8h"DoubleDOS"
  6273. --------v-21F1-------------------------------
  6274. INT 21 - VIRUS - "F1-337" - ???
  6275.     AH = F1h
  6276.     ???
  6277. Return: ???
  6278. SeeAlso: AH=F0h"VIRUS",AX=F1E9h
  6279. --------v-21F1E9-----------------------------
  6280. INT 21 - VIRUS - "Tremor" - INSTALLATION CHECK
  6281.     AX = F1E9h
  6282. Return: AX = installation state
  6283.         CADEh installed, and calling program is infected
  6284.         F100h not installed (normal DOS return value)
  6285.         else  installed, but calling program is not infected
  6286. SeeAlso: AH=F1h"VIRUS",AX=F2AAh
  6287. --------N-21F2-------------------------------
  6288. INT 21 u - Novell NetWare v3.01+ shell interface - MULTIPLEXOR
  6289.     AH = F2h
  6290.     AL = function (see below)
  6291.     CX = length of request buffer in bytes
  6292.     DX = length of reply buffer in bytes
  6293.     DS:SI -> request buffer (contents vary by function)
  6294.     ES:DI -> reply buffer (contents vary by function)
  6295. Return: AL = status
  6296.     reply buffer filled as appropriate for function
  6297. Note:    this is a multiplexor providing a "raw" interface to the underlying
  6298.       NetWare Core Protocol.  Many functions which were accessed via a
  6299.       separate AH function in older versions can also be accessed here,
  6300.       but some NetWare 3.x calls appear to be available only here.
  6301. SeeAlso: AX=F244h
  6302.  
  6303. Values for NetWare Core Protocol functions:
  6304. Fnc/Subfn
  6305. 01h    File Set Lock
  6306. 02h    File Release Lock
  6307. 03h    Log File (see AH=EBh"NetWare")
  6308. 04h    Lock File Set (see AH=CBh"NetWare")
  6309. 05h    Release File (see AH=CCh,AH=ECh"NetWare")
  6310. 06h    Release File Set (see AH=CDh"NetWare")
  6311. 07h    Clear File (see AH=CEh,AH=EDh"NetWare")
  6312. 08h    Clear File Set (see AH=CFh"NetWare")
  6313. 09h    Log Logical Record (see AH=D0h"NetWare")
  6314. 0Ah    Lock Logical Record Set (see AH=D1h"NetWare")
  6315. 0Bh    Clear Logical Record (see AH=D4h"NetWare")
  6316. 0Ch    Release Logical Record (see AH=D2h"NetWare")
  6317. 0Dh    Release Logical Record Set (see AH=D3h"NetWare")
  6318. 0Eh    Clear Logical Record Set (see AH=D5h"NetWare")
  6319. 0Fh    Allocate Resource (see AH=D8h"NetWare")
  6320. 10h    Deallocate Resource (see AH=D9h"NetWare")
  6321. 11h/0Ah    Get Printer Queue
  6322. 11h/xxh    print spooling (see AX=E0xxh"NetWare")
  6323. 12h    Get Volume Info with Number (see AH=DAh"NetWare")
  6324. 13h    Get Station Number (see AH=???h"NetWare")
  6325. 14h    Get File Server Date and Time (see AH=E7h"NetWare")
  6326. 15h/xxh    broadcast services (see AX=E1xxh"NetWare")
  6327. 16h/0Fh    Rename Directory
  6328. 16h/1Bh    Scan Salvagable Files
  6329. 16h/1Ch    Recover Salvagable File
  6330. 16h/1Dh    Purge Salvagable File
  6331. 16h/1Eh    Scan Dir Entry
  6332. 16h/1Fh    Get Dir ENtry
  6333. 16h/20h    Scan Volume for Restrictions
  6334. 16h/21h    Add User Disk Space Restriction (see AX=F216h/SF=21h)
  6335. 16h/22h    Clear Volume Restrictions
  6336. 16h/23h    Scan Dir Restrictions
  6337. 16h/24h    Set Directory Disk Space Restriction (see AX=F216h/SF=24h)
  6338. 16h/25h    Set Entry
  6339. 16h/26h    Scan File or Directory For Extended Trustees (see AX=F216h/SF=26h)
  6340. 16h/27h    Add Extended Trustee to Directory or File (see AX=F216h/SF=27h)
  6341. 16h/28h    Scan File Physical
  6342. 16h/29h    Get Object Disk Restrictions (see AX=F216h/SF=29h)
  6343. 16h/2Ah    Get Effective Rights
  6344. 16h/2Bh    Delete Trustee
  6345. 16h/2Ch    Get Volume Usage
  6346. 16h/2Dh    Get Dir Info
  6347. 16h/2Eh    Move Entry
  6348. 16h/2Fh    Fill Name Space Buffer
  6349. 16h/30h    Get Name Space Entry
  6350. 16h/31h    Open Data Stream
  6351. 16h/32h    Get Object Effective Rights
  6352. 16h/33h    Get Extended Volume Info
  6353. 16h/F3h    Map Directory Number to Path
  6354. 16h/xxh file/directory services (see AX=E2xxh"NetWare")
  6355. 17h/17h    Get Encryption Key
  6356. 17h/18h    Login Object Encrypted
  6357. 17h/1Ch    Get Connection Information (see AX=F217h/SF=1Ch)
  6358. 17h/1Fh    Get Connection List from Object
  6359. 17h/48h    Get Bindery Object Access Level
  6360. 17h/49h    Is Station a Manager?
  6361. 17h/4Ah    Verify Bindery Object Password Encrypted
  6362. 17h/4Bh    Change Bindery Object Password Encrypted
  6363. 17h/4Ch    Get Relation of an Object
  6364. 17h/D2h Clear Connection Number (Logout Station) (see AX=F217h/SF=D2h)
  6365. 17h/EBh    Get Connection's Open Files (see AX=F217h/SF=EBh)
  6366. 17h/ECh    Get Connections Using a File (see AX=F217h/SF=ECh)
  6367. 17h/EEh    Get Physical Record Locks by File (see AX=F217h/SF=EEh)
  6368. 17h/F2h Get Semaphore Information (see AX=F217h/SF=F2h)
  6369. 17h/F3h Map Directory Number to Path (see AX=F217h/SF=F3h)
  6370. 17h/F4h    Convert Path to Directory Entry (see AX=F217h/SF=F4h)
  6371. 17h/xxh    connection control (see AX=E3xxh"NetWare")
  6372. 18h    End of Job (see AH=D6h"NetWare")
  6373. 19h    Logout (see AH=D7h"NetWare")
  6374. 1Ah    Log Physical Record (see AH=BCh"NetWare")
  6375. 1Bh    Lock Physical Record Set (see AH=C2h"NetWare")
  6376. 1Ch    Release Physical Record (see AH=BDh"NetWare")
  6377. 1Dh    Release Physical Record Set (see AH=C3h"NetWare")
  6378. 1Eh    Clear Physical Record (see AH=BEh"NetWare")
  6379. 1Fh    Clear Physical Record Set (see AH=C4h"NetWare")
  6380. 20h/xxh    semaphore services (see AX=C5xxh"NetWare")
  6381. 21h    Negotiate Buffer
  6382. 22h/00h    TTS Is Available (see AX=C702h"NetWare")
  6383. 22h/01h    TTS Begin Transaction (see AX=C700h"NetWare")
  6384. 22h/02h    TTS End Transaction (see AX=C701h"NetWare")
  6385. 22h/03h    TTS Abort Transaction (see AX=C703h"NetWare")
  6386. 22h/04h    TTS Transaction Status (see AX=C704h"NetWare")
  6387. 22h/05h    TTS Get Application Thresholds (see AX=C705h"NetWare")
  6388. 22h/06h    TTS Set Application Thresholds (see AX=C706h"NetWare")
  6389. 22h/07h    TTS Get Workstation Thresholds (see AX=C707h"NetWare")
  6390. 22h/08h    TTS Set Workstation Thresholds (see AX=C708h"NetWare")
  6391. 22h/09h    TTS Get Control Flags
  6392. 22h/0Ah    TTS Set Control Flags
  6393. 23h/01h    AFP Create Directory
  6394. 23h/02h    AFP Create File
  6395. 23h/03h    AFP Delete
  6396. 23h/04h    AFP Get Entry ID From Name
  6397. 23h/05h    AFP Get FIle Infomration
  6398. 23h/06h    AFP Get Entry ID From NetWare Handle
  6399. 23h/07h    AFP Rename
  6400. 23h/08h    AFP Open File Fork
  6401. 23h/09h    AFP Set File Information
  6402. 23h/0Ah    AFP Scan File Information
  6403. 23h/0Bh    AFP Alloc Temporary Dir Handle
  6404. 23h/0Ch    AFP Get Entry ID From Path Name
  6405. 3Dh    Commit File
  6406. 3Eh    File Search Initialize (FindFirst)
  6407. 3Fh    File Search Continue (FindNext)
  6408. 40h    Search File
  6409. 42h    File Close
  6410. 43h    File Create
  6411. 44h    Erase Files
  6412. 45h    File Rename
  6413. 46h    Set File Attributes
  6414. 47h    Get File Size
  6415. 48h    File Read
  6416. 49h    File Write
  6417. 4Ah    File Server Copy (see AH=F3h"NetWare")
  6418. 4Bh    Set File Time and Date
  6419. 4Ch    File Open
  6420. 4Dh    Create New File
  6421. 4Eh    Allow Task Access to File
  6422. 4Fh    Set Extended File Attributes (see AH=B6h"NetWare")
  6423. 55h    Get File Bit Map
  6424. 57h/03h    Scan NS Entry Info
  6425. 57h/06h    Get NS Entry Info (see AX=F257h/SF=06h)
  6426. 57h/07h    Set NS Entry DOS Info
  6427. 57h/0Ch    Allocate Temp NS Dir Handle
  6428. 57h/13h    Read NS Info
  6429. 57h/16h    Get Directory Base
  6430. 57h/17h    Get NS Info
  6431. 57h/19h    Write NS Info
  6432. 57h/1Ah    Read Extended NS Info
  6433. 57h/1Bh    Write Extended NS Infor
  6434. 57h/1Ch    Get NS Path
  6435. 58h/01h    Get Volume Audit Statistics
  6436. 58h/02h    Add Audit Property
  6437. 58h/03h    Login as Volume Auditor
  6438. 58h/04h Change Auditor Password
  6439. 58h/05h Check Audit Access
  6440. 58h/06h    Remove Audit Property
  6441. 58h/07h    Disable Auditing on Volume
  6442. 58h/08h    Enable Auditing on Volume
  6443. 58h/09h    Is User Audited?
  6444. 58h/0Ah    Read Auditing Bit Map
  6445. 58h/0Bh    Read Audit Config Header
  6446. 58h/0Dh    Logout as Volume Auditor
  6447. 58h/0Eh    Reset Auditing File
  6448. 58h/0Fh    Reset Audit History File
  6449. 58h/10h    Write Auditing Bit Map
  6450. 58h/11h    Write Audit Config Header
  6451. 58h/13h    Get Auditing Flags
  6452. 58h/14h    Close Old Auditing File
  6453. 58h/15h    Delete Old Auditing File
  6454. 58h/16h    Check Audit Level Two Access
  6455. 5Ah/01h    Get DM Info
  6456. 61h    Negotiate LIP Buffer
  6457. 65h    Packet Burst Connection
  6458. 7Bh/01h    Get Cache Information
  6459. 7Bh/02h    Get File Server Information
  6460. 7Bh/03h    Get NetWare File Systems Information
  6461. 7Bh/04h    Get User Information
  6462. 7Bh/05h    Get Packet Burst Information
  6463. 7Bh/06h    Get IPX/SPX Information
  6464. 7Bh/07h    Get Garbage Collection Information
  6465. 7Bh/08h    Get CPU Information
  6466. 7Bh/09h    Get Volume Switch Information
  6467. 7Bh/0Ah    Get NLM Loaded List
  6468. 7Bh/0Bh    Get NLM Information
  6469. 7Bh/0Ch    Get Directory Cache Information
  6470. 7Bh/0Dh    Get OS Version Information
  6471. 7Bh/0Eh    Get Active Connection List by Type
  6472. 7Bh/0Fh    Get NLM's Resource Tag List
  6473. 7Bh/14h    Get Active LAN Board List
  6474. 7Bh/15h    Get LAN Configuration Information
  6475. 7Bh/16h    Get LAN Common Counters Information
  6476. 7Bh/17h    Get LAN Custom Counters Information
  6477. 7Bh/18h    Get LAN Config Strings
  6478. 7Bh/19h    Get LSL Informatino
  6479. 7Bh/1Ah    Get LSL Logical Board Statistics
  6480. 7Bh/1Eh    Get Media Manager Object Information
  6481. 7Bh/1Fh    Get Media Manager Object List
  6482. 7Bh/20h    Get Media Manager Object Children List
  6483. 7Bh/21h    Get Volume Segment List
  6484. 7Bh/28h    Get Active Protocol Stacks
  6485. 7Bh/29h    Get Protocol Stack Configuration Information
  6486. 7Bh/2Ah    Get Protocol Stack Statistics Information
  6487. 7Bh/2Bh    Get Protocol Stack Custom Information
  6488. 7Bh/2Ch    Get Protocol Stack Numbers By Media Number
  6489. 7Bh/2Dh    Get Protocol Stack Numbers By LAN Board Number
  6490. 7Bh/2Eh    Get Media Name by Media Number
  6491. 7Bh/2Fh    Get Loaded Media Number List
  6492. 7Bh/32h    Get General Router and SAP Information
  6493. 7Bh/33h    Get Network Router Information
  6494. 7Bh/34h    Get Network Routers Information
  6495. 7Bh/35h    Get Known Networks Information
  6496. 7Bh/36h    Get Server Information
  6497. 7Bh/38h    Get Known Servers Information
  6498. 7Bh/3Ch    Get Server Set Commands Information
  6499. 7Bh/3Dh    Get Server Set Categories
  6500. --------T-21F2-------------------------------
  6501. INT 21 - DoubleDOS - SEND CHARACTER TO KEYBOARD BUFFER OF OTHER JOB
  6502.     AH = F2h
  6503.     AL = character
  6504. Return: AL = 00h successful
  6505.          01h buffer full (128 characters)
  6506. SeeAlso: AH=E2h"DoubleDOS",AH=F1h"DoubleDOS",AH=F3h"DoubleDOS"
  6507. SeeAlso: AH=F8h"DoubleDOS"
  6508. --------N-21F216SF21-------------------------
  6509. INT 21 - Novell NetWare v3+ - ADD USER DISK SPACE RESTRICTION
  6510.     AX = F216h subfn 21h
  6511.     CX = length of request buffer in bytes
  6512.     DX = length of reply buffer in bytes
  6513.     DS:SI -> request buffer (see below)
  6514.     ES:DI -> reply buffer (ignored)
  6515. Return: AL = status
  6516. SeeAlso: AX=F216h/SF=24h
  6517.  
  6518. Format of request buffer:
  6519. Offset    Size    Description
  6520.  00h    WORD    000Ah (length of following data)
  6521.  02h    BYTE    21h (subfunction "Add User Disk Space Restriction")
  6522.  03h    BYTE    volume number
  6523.  04h    DWORD    (big-endian) object ID
  6524.  08h    DWORD    (big-endian) disk space limit in 4K blocks
  6525.         00000000h to 40000000h
  6526. --------N-21F216SF24-------------------------
  6527. INT 21 - Novell NetWare v3+ - SET DIRECTORY DISK SPACE RESTRICTION
  6528.     AX = F216h subfn 24h
  6529.     CX = length of request buffer in bytes
  6530.     DX = length of reply buffer in bytes
  6531.     DS:SI -> request buffer (see below)
  6532.     ES:DI -> reply buffer (ignored)
  6533. Return: AL = status
  6534. SeeAlso: AX=F216h/SF=21h
  6535.  
  6536. Format of request buffer:
  6537. Offset    Size    Description
  6538.  00h    WORD    0006h (length of following data)
  6539.  02h    BYTE    24h (subfunction "Set Directory Disk Space Restriction")
  6540.  03h    BYTE    directory handle
  6541.  04h    DWORD    (big-endian) disk space limit in 4K blocks
  6542.         00000000h to remove restriction, negative to set to 0 blocks
  6543. --------N-21F216SF26-------------------------
  6544. INT 21 - Novell NetWare v3+ - SCAN FILE OR DIRECTORY FOR EXTENDED TRUSTEES
  6545.     AX = F216h subfn 26h
  6546.     CX = length of request buffer in bytes
  6547.     DX = length of reply buffer in bytes
  6548.     DS:SI -> request buffer (see below)
  6549.     ES:DI -> reply buffer (see below)
  6550. Return: AL = status
  6551. Desc:    get up to 20 extended trustee entries per call for a file or directory
  6552.  
  6553. Format of request buffer:
  6554. Offset    Size    Description
  6555.  00h    WORD    length of following data
  6556.  02h    BYTE    26h (subfunc "Scan File or Directory For Extended Trustees")
  6557.  03h    BYTE    directory handle
  6558.  04h    BYTE    sequence number
  6559.         00h for first call, increment by number of returned entries
  6560.  05h    BYTE    length of path
  6561.  06h  N BYTEs    pathname
  6562.  
  6563. Format of reply buffer:
  6564. Offset    Size    Description
  6565.  00h    BYTE    number of entries returned (max 20)
  6566.  01h 20 DWORDs    (big-endian) list of object IDs
  6567.  51h 20 WORDs    list of associated trustee rights
  6568. --------N-21F216SF27-------------------------
  6569. INT 21 - Novell NetWare v3+ - ADD EXTENDED TRUSTEE TO DIRECTORY OR FILE
  6570.     AX = F216h subfn 27h
  6571.     CX = length of request buffer in bytes
  6572.     DX = length of reply buffer in bytes
  6573.     DS:SI -> request buffer (see below)
  6574.     ES:DI -> reply buffer (ignored)
  6575. Return: AL = status
  6576.  
  6577. Format of request buffer:
  6578. Offset    Size    Description
  6579.  00h    WORD    length of following data
  6580.  02h    BYTE    27h (subfunction "Add Extended Trustee to Directory or File")
  6581.  03h    BYTE    directory handle
  6582.  04h    DWORD    (big-endian) object ID
  6583.  08h    WORD    trustee rights (see below)
  6584.  0Ah    BYTE    path length
  6585.  0Bh  N BYTEs    path name
  6586.  
  6587. Bitfields for trustee rights:
  6588.  bit 0:    read
  6589.  bit 1: write
  6590.  bit 3: create
  6591.  bit 4: delete
  6592.  bit 5: access
  6593.  bit 6: file
  6594.  bit 7: modify
  6595.  bit 8: supervisor
  6596. --------N-21F216SF29-------------------------
  6597. INT 21 - Novell NetWare v3+ - GET OBJECT DISK RESTRICTIONS
  6598.     AX = F216h subfn 29h
  6599.     CX = length of request buffer in bytes
  6600.     DX = length of reply buffer in bytes
  6601.     DS:SI -> request buffer (see below)
  6602.     ES:DI -> reply buffer (see below)
  6603. Return: AL = status
  6604.     reply buffer filled
  6605. Note:    this function returns successfully, showing no restriction, if an
  6606.       invalid object ID is specified
  6607. SeeAlso: AX=F216h/SF=24h
  6608.  
  6609. Format of request buffer:
  6610. Offset    Size    Description
  6611.  00h    WORD    0006h (length of following data)
  6612.  02h    BYTE    21h (subfunction "Get Object Disk Restrictions")
  6613.  03h    BYTE    volume number
  6614.  04h    DWORD    (big-endian) object ID
  6615.  
  6616. Format of reply buffer:
  6617. Offset    Size    Description
  6618.  00h    DWORD    disk space limit
  6619.  04h    DWORD    disk space currently in use by object
  6620. --------N-21F217SF1C-------------------------
  6621. INT 21 - Novell NetWare v3+ - GET CONNECTION INFORMATION
  6622.     AX = F217h subfn 1Ch
  6623.     CX = length of request buffer in bytes
  6624.     DX = length of reply buffer in bytes
  6625.     DS:SI -> request buffer (see below)
  6626.     ES:DI -> reply buffer (see below)
  6627. Return: AL = status
  6628.     reply buffer filled
  6629.  
  6630. Format of request buffer:
  6631. Offset    Size    Description
  6632.  00h    WORD    0005h (length of following data)
  6633.  02h    BYTE    1Ch (subfunction "Get Connection Information")
  6634.  03h    DWORD    target connection number
  6635. Note:    connection numbers greater than the maximum supported by the server
  6636.       can cause ABENDs
  6637.  
  6638. Format of reply buffer:
  6639. Offset    Size    Description
  6640.  00h    DWORD    (big-endian) unique user ID, 00000000h if no one logged in
  6641.  04h    WORD    (big-endian) user type
  6642.  06h 48 BYTEs    user name
  6643.  36h  7 BYTEs    login time (see below)
  6644.  3Dh    BYTE    reserved
  6645. --------N-21F217SFD2-------------------------
  6646. INT 21 - Novell NetWare v3+ - CLEAR CONNECTION NUMBER (LOGOUT STATION)
  6647.     AX = F217h subfn D2h
  6648.     CX = length of request buffer in bytes
  6649.     DX = length of reply buffer in bytes
  6650.     DS:SI -> request buffer (see below)
  6651.     ES:DI -> reply buffer (ignored)
  6652. Return: AL = status
  6653.     reply buffer filled
  6654.  
  6655. Format of request buffer:
  6656. Offset    Size    Description
  6657.  00h    WORD    0002h (length of following data)
  6658.  02h    BYTE    D2h (subfunction "Clear Connection Number")
  6659.  03h    BYTE    connection number
  6660. --------N-21F217SFEB-------------------------
  6661. INT 21 - Novell NetWare v3+ - GET CONNECTION'S OPEN FILES
  6662.     AX = F217h subfn EBh
  6663.     CX = length of request buffer in bytes
  6664.     DX = length of reply buffer in bytes
  6665.     DS:SI -> request buffer (see below)
  6666.     ES:DI -> reply buffer (see below)
  6667. Return: AL = status
  6668.     reply buffer filled
  6669.  
  6670. Format of request buffer:
  6671. Offset    Size    Description
  6672.  00h    WORD    0005h (length of following data)
  6673.  02h    BYTE    EBh (subfunction "Get Connection's Open Files")
  6674.  03h    WORD    target connection number
  6675.  05h    WORD    last record seen (set to 0000h for first call)
  6676. Note:    connection numbers greater than the maximum supported by the server
  6677.       can cause ABENDs
  6678.  
  6679. Format of reply buffer:
  6680. Offset    Size    Description
  6681.  00h    WORD    next request record
  6682.  02h    WORD    number of records returned (max 28)
  6683.  04h 29N BYTEs    records
  6684.         Offset    Size    Description
  6685.          00h    WORD    task number
  6686.          02h    BYTE    lock type
  6687.          03h    BYTE    access control
  6688.          04h    BYTE    lock flag
  6689.          05h    BYTE    volume number
  6690.          06h    DWORD    parent directory entry number
  6691.          0Ah    DWORD    directory entry number
  6692.          0Eh    BYTE    reserved
  6693.          0Fh    BYTE    data stream type
  6694.          10h    BYTE    file name length
  6695.          11h 12 BYTEs    file name
  6696. --------N-21F217SFEC-------------------------
  6697. INT 21 - Novell NetWare v3+ - GET CONNECTIONS USING A FILE
  6698.     AX = F217h subfn ECh
  6699.     CX = length of request buffer in bytes
  6700.     DX = length of reply buffer in bytes
  6701.     DS:SI -> request buffer (see below)
  6702.     ES:DI -> reply buffer (see below)
  6703. Return: AL = status
  6704.     reply buffer filled
  6705.  
  6706. Format of request buffer:
  6707. Offset    Size    Description
  6708.  00h    WORD    0009h (length of following data)
  6709.  02h    BYTE    ECh (subfunction "Get Connections Using a File")
  6710.  03h    BYTE    data stream type
  6711.  04h    BYTE    volume number
  6712.  05h    DWORD    directory entry number
  6713.  09h    WORD    last record seen (0000h for first call)
  6714.  
  6715. Format of reply buffer:
  6716. Offset    Size    Description
  6717.  00h    WORD    next request record
  6718.  02h    WORD    use count
  6719.  04h    WORD    open count
  6720.  06h    WORD    number of times open for reading
  6721.  08h    WORD    number of times open for writing
  6722.  0Ah    WORD    Deny Read count
  6723.  0Ch    WORD    Deny Write count
  6724.  0Eh    BYTE    flag: locked
  6725.  0Fh    BYTE    data stream type
  6726.  10h    WORD    number of records returned (max 70)
  6727.  12h 7N BYTEs    returned records
  6728.         Offset    Size    Description
  6729.          00h    WORD    connection number
  6730.          02h    WORD    task number
  6731.          04h    BYTE    lock type
  6732.          05h    BYTE    access flag
  6733.          06h    BYTE    lock flag
  6734. --------N-21F217SFEE-------------------------
  6735. INT 21 - Novell NetWare v3+ - GET PHYSICAL RECORD LOCKS BY FILE
  6736.     AX = F217h subfn EEh
  6737.     CX = length of request buffer in bytes
  6738.     DX = length of reply buffer in bytes
  6739.     DS:SI -> request buffer (see below)
  6740.     ES:DI -> reply buffer (see below)
  6741. Return: AL = status
  6742.     reply buffer filled
  6743.  
  6744. Format of request buffer:
  6745. Offset    Size    Description
  6746.  00h    WORD    0009h (length of following data)
  6747.  02h    BYTE    EEh (subfunction "Get Physical Record Locks by File")
  6748.  03h    BYTE    data stream number
  6749.  04h    BYTE    volume number
  6750.  05h    DWORD    directory entry number
  6751.  09h    WORD    last record seen (0000h for first call)
  6752.  
  6753. Format of reply buffer:
  6754. Offset    Size    Description
  6755.  00h    WORD    next request record
  6756.  02h    WORD    number of locks
  6757.  04h 17N BYTEs    lock records, one per lock
  6758.         Offset    Size    Description
  6759.          00h    WORD    logged count
  6760.          02h    WORD    number of shareable locks
  6761.          04h    DWORD    start offset of record
  6762.          08h    DWORD    end offset of record
  6763.          0Ch    WORD    logical connection number
  6764.          0Eh    WORD    task number
  6765.          10h    BYTE    lock type
  6766. --------N-21F217SFF2-------------------------
  6767. INT 21 - Novell NetWare v3+ - GET SEMAPHORE INFORMATION
  6768.     AX = F217h subfn F2h
  6769.     CX = length of request buffer in bytes
  6770.     DX = length of reply buffer in bytes
  6771.     DS:SI -> request buffer (see below)
  6772.     ES:DI -> reply buffer (see below)
  6773. Return: AL = status
  6774.     reply buffer filled
  6775.  
  6776. Format of request buffer:
  6777. Offset    Size    Description
  6778.  00h    WORD    length of following data (max 84h)
  6779.  02h    BYTE    F2h (subfunction "Get Semaphore Information")
  6780.  03h    WORD    last record seen (0000h on first call)
  6781.  05h    BYTE    length of semaphore name (max 128)
  6782.  06h  N BYTEs    semaphore name
  6783.  
  6784. Format of reply buffer:
  6785. Offset    Size    Description
  6786.  00h    WORD    next request record
  6787.  02h    WORD    open count
  6788.  04h    BYTE    value of semaphore
  6789.  05h    WORD    number of records returned
  6790.  07h 2N WORDs    list of logical connection number/task number pairs
  6791. --------N-21F217SFF3-------------------------
  6792. INT 21 - Novell NetWare v3+ - MAP DIRECTORY NUMBER TO PATH
  6793.     AX = F217h subfn F3h
  6794.     CX = length of request buffer in bytes
  6795.     DX = length of reply buffer in bytes
  6796.     DS:SI -> request buffer (see below)
  6797.     ES:DI -> reply buffer (see below)
  6798. Return: AL = status
  6799.     reply buffer filled
  6800. SeeAlso: AX=F217h/SF=F4h
  6801.  
  6802. Format of request buffer:
  6803. Offset    Size    Description
  6804.  00h    WORD    0007h (length of following data)
  6805.  02h    BYTE    F3h (subfunction "Map Directory Number to Path")
  6806.  03h    BYTE    volume number
  6807.  04h    DWORD    directory entry number
  6808.  08h    BYTE    name space type
  6809.  
  6810. Format of reply buffer:
  6811. Offset    Size    Description
  6812.  00h    BYTE    directory path length
  6813.  01h  N BYTEs    directory path (NetWare style, separated by length descriptors
  6814.         rather than slashes or backslashes)
  6815. --------N-21F217SFF4-------------------------
  6816. INT 21 - Novell NetWare v3+ - CONVERT PATH TO DIRECTORY ENTRY
  6817.     AX = F217h subfn F4h
  6818.     CX = length of request buffer in bytes
  6819.     DX = length of reply buffer in bytes
  6820.     DS:SI -> request buffer (see below)
  6821.     ES:DI -> reply buffer (see below)
  6822. Return: AL = status
  6823.     reply buffer filled
  6824. SeeAlso: AX=F217h/SF=F3h
  6825.  
  6826. Format of request buffer:
  6827. Offset    Size    Description
  6828.  00h    WORD    length of following data
  6829.  02h    BYTE    F4h (subfunction "Convert Path to Directory Entry")
  6830.  03h    BYTE    directory handle or 00h for none
  6831.  04h    BYTE    length of directory path
  6832.  05h  N BYTEs    directory path (must be fully qualified if no handle specified)
  6833.  
  6834. Format of reply buffer:
  6835. Offset    Size    Description
  6836.  00h    BYTE    (return) volume number
  6837.  01h    DWORD    (return) directory entry number
  6838. --------N-21F244-----------------------------
  6839. INT 21 - Novell NetWare - FILE SERVICES - ERASE FILES
  6840.     AX = F244h
  6841.     DS:SI -> request buffer (see below)
  6842.     ES:DI -> reply buffer (ignored???)
  6843. Return: AL = status
  6844.         00h successful
  6845.         98h nonexistent volume
  6846.         9Bh invaid directory handle
  6847.         9Ch invalid path
  6848.         FFh no files found
  6849. Note:    this function only marks the file for deletion; use AH=E2h/SF=CEh to
  6850.       actually delete all marked files
  6851. SeeAlso: AH=13h,AH=41h,AH=E2h/SF=0Bh,AH=E3h/SF=CEh
  6852.  
  6853. Format of request buffer:
  6854. Offset    Size    Description
  6855.  00h    BYTE    directory handle
  6856.  01h    BYTE    search attributes (see AX=4301h)
  6857.  02h    BYTE    length of filespec
  6858.  03h  N BYTEs    ASCIZ filespec (may include wildcards)
  6859. --------N-21F257SF06-------------------------
  6860. INT 21 - Novell NetWare v3+ - GET NAME SPACE INFORMATION FOR FILE OR DIRECTORY
  6861.     AX = F257h subfn 06h
  6862.     CX = length of request buffer in bytes
  6863.     DX = length of reply buffer in bytes
  6864.     DS:SI -> request buffer (see below)
  6865.     ES:DI -> reply buffer (see below)
  6866. Return: AL = status
  6867.     reply buffer filled
  6868.  
  6869. Format of request buffer:
  6870. Offset    Size    Description
  6871.  00h    BYTE    06h (subfunction "Get NS Entry Info")
  6872.  01h    BYTE    name space
  6873.  02h    BYTE    destination name space
  6874.  03h    WORD    search attributes
  6875.  05h    DWORD    return information mask (should be 00000200h)
  6876.  09h    BYTE    volume number
  6877.  0Ah    DWORD    directory handle
  6878.  0Eh    BYTE    handle flag (should be FFh)
  6879.  0Fh    BYTE    number of path components
  6880.  10h  N BYTEs    list of path components (each a counted string)
  6881.  
  6882. Format of reply buffer:
  6883. Offset    Size    Description
  6884.  00h 72 BYTEs    reserved
  6885.  48h    DWORD    creator's name space number
  6886.  4Ch 257 BYTEs    reserved
  6887. --------v-21F2AA-----------------------------
  6888. INT 21 - VIRUS - "PcVrsDs" - INSTALLATION CHECK
  6889.     AX = F2AAh
  6890. Return: AH = AAh if resident
  6891. SeeAlso: AH=F1h"VIRUS",AH=F3h"VIRUS"
  6892. --------N-21F3-------------------------------
  6893. INT 21 - Novell NetWare - FILE SERVICES - FILE SERVER FILE COPY
  6894.     AH = F3h
  6895.     ES:DI -> request buffer (see below)
  6896. Return: AL = status/error code
  6897.     CX:DX = number of bytes copied
  6898. Notes:    this function is supported by Advanced NetWare 2.0+
  6899.     both source and destination must be on the same file server
  6900. SeeAlso: AH=3Ch,AH=3Fh
  6901.  
  6902. Format of request buffer:
  6903. Offset    Size    Description
  6904.  00h    WORD    source file handle (as returned by AH=3Ch or AH=3Dh)
  6905.  02h    WORD    destination file handle
  6906.  04h    DWORD    starting offset in source
  6907.  08h    DWORD    starting offset in destination
  6908.  0Ch    DWORD    number of bytes to copy
  6909. --------T-21F3-------------------------------
  6910. INT 21 - DoubleDOS - ADD CHARACTER TO KEYBOARD BUFFER OF CURRENT JOB
  6911.     AH = F3h
  6912.     AL = character
  6913. Return: AL = 00h successful
  6914.          01h buffer full (128 characters)
  6915. SeeAlso: AH=E3h"DoubleDOS",AH=F1h"DoubleDOS",AH=F2h"DoubleDOS"
  6916. SeeAlso: AH=F8h"DoubleDOS"
  6917. --------v-21F3-------------------------------
  6918. INT 21 - VIRUS - "Carfield" - INSTALLATION CHECK
  6919.     AH = F3h
  6920. Return: AX = 0400h if resident
  6921. SeeAlso: AH=D5h"Carfield",AX=F2AAh,AH=F7h"VIRUS"
  6922. --------T-21F400-----------------------------
  6923. INT 21 - DoubleDOS - INSTALLATION CHECK/PROGRAM STATUS
  6924.     AX = F400h
  6925. Return: AL = 00h if DoubleDOS not present
  6926.        = 01h if running in visible DoubleDOS partition
  6927.        = 02h if running in the invisible DoubleDOS partition
  6928. SeeAlso: AX=E400h,AH=F5h"DoubleDOS"
  6929. --------T-21F5-------------------------------
  6930. INT 21 - DoubleDOS - OTHER PROGRAM STATUS
  6931.     AH = F5h
  6932. Return: AL = 00h no program in other partition
  6933.        = 01h program in other partition is running
  6934.        = 02h program in other partition is suspended
  6935. SeeAlso: AH=E5h"DoubleDOS",AX=F400h"DoubleDOS"
  6936. --------v-21F7-------------------------------
  6937. INT 21 - VIRUS - "GP1" - INSTALLATION CHECK
  6938.     AH = F7h
  6939. Return: AX = 0300h if resident
  6940. SeeAlso: AH=F0h"VIRUS",AH=FBh"VIRUS"
  6941. --------D-21F8-------------------------------
  6942. INT 21 - DOS v2.11 - SET OEM INT 21 HANDLER
  6943.     AH = F8h
  6944.     DS:DX -> OEM INT 21 handler for functions F9h to FFh
  6945.          FFFFh:FFFFh disables OEM handler
  6946. Notes:    this function is supported by Toshiba T1000 ROM MS-DOS 2.11
  6947.     calls to AH=F9h through AH=FFH will return AL=00h if no handler set
  6948.     handler is called with all registers exactly as set by caller, and
  6949.       should exit with IRET
  6950. SeeAlso: AH=F9h"OEM"
  6951. --------T-21F8-------------------------------
  6952. INT 21 - DoubleDOS - SET/RESET KEYBOARD CONTROL FLAGS
  6953.     AH = F8h
  6954.     AL = 00h set flags for this program
  6955.        = 01h set flags for other program
  6956.     DX = keyboard control flags (see AH=E8h"DoubleDOS")
  6957. Return: DX = previous flags
  6958. Notes:    disabling Ctrl-PrtSc will allow the program to intercept the keystroke;
  6959.       disabling any of the other keystrokes disables them completely
  6960.     this function is identical to AH=E8h
  6961. SeeAlso: AH=E8h"DoubleDOS",AH=F1h"DoubleDOS",AH=F2h"DoubleDOS"
  6962. SeeAlso: AH=F3h"DoubleDOS"
  6963. --------D-21F9-------------------------------
  6964. INT 21 - DOS v2.11 - OEM FUNCTION
  6965.     AH = F9h
  6966. SeeAlso: AH=F8h"OEM",AH=FAh"OEM"
  6967. --------T-21F9-------------------------------
  6968. INT 21 - DoubleDOS - SET TIMESHARING PRIORITY
  6969.     AH = F9h
  6970.     AL = 00h visible program gets 70%, invisible gets 30% (default)
  6971.        = 01h visible program gets 50%, invisible gets 50%
  6972.        = 02h visible program gets 30%, invisible gets 70%
  6973.        = 03h Top program gets 70%, bottom program gets 30%
  6974.        = 04h Top program gets 30%, bottom program gets 70%
  6975.        = 05h get current priority
  6976.         Return: AL = priority setting
  6977. Note:    identical to AH=E9h
  6978. SeeAlso: AH=E9h"DoubleDOS",AH=FAh"DoubleDOS",AH=FBh"DoubleDOS"
  6979. --------D-21FA-------------------------------
  6980. INT 21 - DOS v2.11 - OEM FUNCTION
  6981.     AH = FAh
  6982. SeeAlso: AH=F8h"OEM",AH=F9h"OEM",AH=FBh"OEM"
  6983. --------T-21FA-------------------------------
  6984. INT 21 - DoubleDOS - TURN OFF TASK SWITCHING
  6985.     AH = FAh
  6986. Return: task switching turned off
  6987. SeeAlso: AH=EAh"DoubleDOS",AH=F9h"DoubleDOS",AH=FBh"DoubleDOS"
  6988. SeeAlso: INT FA"DoubleDOS"
  6989. --------v-21FA--DX5945-----------------------
  6990. INT 21 U - PC Tools v7+ VDEFEND, VSAFE, VWATCH - API
  6991.     AH = FAh
  6992.     DX = 5945h
  6993.     AL = function (00h-02h for VDEFEND, 00h-07h for VSAFE and VWATCH)
  6994. Return: varies by function
  6995. Note:    this API is identical to the API on INT 13/AH=FAh and INT 16/AH=FAh,
  6996.       so it is listed in its entirety only under INT 16/AX=FA00h and
  6997.       following
  6998. SeeAlso: INT 13/AX=FA00h,INT 16/AX=FA00h
  6999. --------D-21FB-------------------------------
  7000. INT 21 - DOS v2.11 - OEM FUNCTION
  7001.     AH = FBh
  7002. SeeAlso: AH=F8h"OEM",AH=FAh"OEM",AH=FCh"OEM"
  7003. --------T-21FB-------------------------------
  7004. INT 21 - DoubleDOS - TURN ON TASK SWITCHING
  7005.     AH = FBh
  7006. Return: task switching turned on
  7007. SeeAlso: AH=EBh"DoubleDOS",AH=F9h"DoubleDOS",AH=FAh"DoubleDOS"
  7008. SeeAlso: INT FB"DoubleDOS"
  7009. --------v-21FB-------------------------------
  7010. INT 21 - VIRUS - "Cinderella" - INSTALLATION CHECK
  7011.     AH = FBh
  7012. Return: AH = 00h if resident
  7013. SeeAlso: AH=F7h"VIRUS",AX=FB0Ah
  7014. --------v-21FB0A-----------------------------
  7015. INT 21 - VIRUS - "dBASE" - INSTALLATION CHECK
  7016.     AX = FB0Ah
  7017. Return: AX = 0AFBh if resident
  7018. SeeAlso: AH=FBh"VIRUS",AH=FCh"VIRUS"
  7019. --------D-21FC-------------------------------
  7020. INT 21 - DOS v2.11 - OEM FUNCTION
  7021.     AH = FCh
  7022. SeeAlso: AH=F8h"OEM",AH=FBh"OEM",AH=FDh"OEM"
  7023. --------T-21FC-------------------------------
  7024. INT 21 - DoubleDOS - GET VIRTUAL SCREEN ADDRESS
  7025.     AH = FCh
  7026. Return: ES = segment of virtual screen
  7027. Desc:    Determine the address of the virtual screen to which the program
  7028.       should write instead of the actual video memory, so that the
  7029.       multitasked programs do not interfere with each other's output.
  7030. Notes:    screen address can change if task-switching is on!!
  7031.     identical to AH=ECh
  7032. SeeAlso: AH=ECh"DoubleDOS",INT FC"DoubleDOS"
  7033. --------v-21FC-------------------------------
  7034. INT 21 - VIRUS - "Troi" - INSTALLATION CHECK
  7035.     AH = FCh
  7036. Return: AL = A5h if resident
  7037. SeeAlso: AX=FB0Ah"VIRUS",AH=FDh"VIRUS"
  7038. --------D-21FD-------------------------------
  7039. INT 21 - DOS v2.11 - OEM FUNCTION
  7040.     AH = FDh
  7041. SeeAlso: AH=F8h"OEM",AH=FCh"OEM",AH=FEh"DOS"
  7042. --------v-21FD-------------------------------
  7043. INT 21 - VIRUS - "Border" - INSTALLATION CHECK
  7044.     AH = FDh
  7045. Return: AH = 13h if resident
  7046. SeeAlso: AH=FCh"VIRUS",AH=FEh"VIRUS"
  7047. --------D-21FE-------------------------------
  7048. INT 21 - DOS v2.11 - OEM FUNCTION
  7049.     AH = FEh
  7050. SeeAlso: AH=F8h"OEM",AH=FDh"OEM",AH=FFh"OEM"
  7051. --------T-21FE-------------------------------
  7052. INT 21 - DoubleDOS - GIVE AWAY TIME TO OTHER TASKS
  7053.     AH = FEh
  7054.     AL = number of 55ms time slices to give away
  7055. Return: returns after giving away time slices
  7056. SeeAlso: AH=EEh"DoubleDOS",INT FE"DoubleDOS"
  7057. --------v-21FE-------------------------------
  7058. INT 21 - VIRUS - "483" - INSTALLATION CHECK
  7059.     AH = FEh
  7060. Return: AH = 00h if resident
  7061. SeeAlso: AH=FDh"VIRUS",AX=FE01h
  7062. --------v-21FE01-----------------------------
  7063. INT 21 - VIRUS - "Flip" - INSTALLATION CHECK
  7064.     AX = FE01h
  7065. Return: AX = 01FEh if resident
  7066. SeeAlso: AH=FEh"VIRUS",AX=FE02h
  7067. --------v-21FE02-----------------------------
  7068. INT 21 - VIRUS - "2468"/"Tequila" - INSTALLATION CHECK
  7069.     AX = FE02h
  7070. Return: AX = 01FDh if resident
  7071. SeeAlso: AX=FE01h,AX=FE03h,AX=FEDCh"VIRUS"
  7072. --------v-21FE03-----------------------------
  7073. INT 21 - VIRUS - "2468"/"Tequila" - DISPLAY VIRUS MESSAGE
  7074.     AX = FE03h
  7075. SeeAlso: AX=FE02h
  7076. --------d-21FEDC-----------------------------
  7077. INT 21 - PCMag PCMANAGE/DCOMPRES - INSTALLATION CHECK
  7078.     AX = FEDCh
  7079. Return: AX = CDEFh if installed
  7080. Program: the PCMANAGE/DCOMPRES combination from PC Magazine permits
  7081.       infrequently-used files to be compressed to save space and
  7082.       transparently expanded when accessed
  7083. SeeAlso: AH=DCh,INT 2D/AL=10h"dLite"
  7084. --------v-21FEDC-----------------------------
  7085. INT 21 - VIRUS - "Black Monday" - INSTALLATION CHECK
  7086.     AX = FEDCh
  7087. Return: AL = DCh if resident
  7088. SeeAlso: AX=FE02h,AH=FFh"VIRUS"
  7089. --------D-21FF-------------------------------
  7090. INT 21 - DOS v2.11 - OEM FUNCTION
  7091.     AH = FFh
  7092. SeeAlso: AH=F8h"OEM",AH=FEh"OEM"
  7093. --------K-21FF-------------------------------
  7094. INT 21 - CED (Command EDitor) - INSTALLABLE COMMANDS
  7095.     AH = FFh
  7096.     AL = subfunction
  7097.         00h add installable command
  7098.            BL = mode - bit 0 = 1 callable from DOS prompt
  7099.                bit 1 = 1 callable from application
  7100.            DS:SI -> CR-terminated command name
  7101.            ES:DI -> FAR routine entry point
  7102.         01h remove installable command
  7103.            DS:SI -> CR-terminated command name
  7104.         02h reserved, may be used to test for CED installation
  7105. Return: CF clear if successful
  7106.     CF set on error
  7107.         AX = 01h invalid function
  7108.          02h command not found (subfunction 01h only)
  7109.          08h insufficient memory (subfunction 00h only)
  7110.          0Eh bad data (subfunction 00h only)
  7111.     AH = FFh if CED not installed
  7112. Program: CED is a shareware DOS command-line enhancer by Christopher J. Dunford
  7113. SeeAlso: AX=0A00h
  7114. --------E-21FF-------------------------------
  7115. INT 21 - DJ GO32.EXE 80386+ DOS extender - DOS EXTENSIONS
  7116.     AH = FFh
  7117.     AL = function
  7118.         01h create file
  7119.         02h open file
  7120.         03h get file statistics
  7121.         04h get time of day
  7122.         05h set time of day
  7123.         06h stat
  7124.         07h system
  7125. Program: GO32.EXE is a DOS extender included as part of the 80386 port of the
  7126.       GNU C/C++ compiler by DJ Delorie and distributed as DJGPP
  7127. SeeAlso: INT 10/AH=FFh"GO32"
  7128. --------K-21FF-------------------------------
  7129. INT 21 - DOSED.COM - INSTALLATION CHECK
  7130.     AH = FFh
  7131.     DS:SI -> "DOSED"
  7132.     ES = 0000h
  7133. Return: ES:DI -> "DOSED" if installed
  7134. Program: DOSED is a free DOS commandline editor/history buffer by Sverre H.
  7135.       Huseby
  7136. --------v-21FF-------------------------------
  7137. INT 21 - VIRUS - "Sunday", "Tumen 0.5", "Hero" - INSTALLATION CHECK
  7138.     AH = FFh
  7139. Return: AH = 00h if "Tumen 0.5" or "Hero" resident
  7140.     AX = 0400h if "Sunday" resident
  7141. SeeAlso: AX=FEDCh"VIRUS",AX=FF0Fh
  7142. --------E-21FF-------------------------------
  7143. INT 21 UP - Rational Systems DOS/4GW - API
  7144.     AH = FFh
  7145.     DH = function (00h-17h) (see also separate entries below)
  7146.     DL = subfunction or argument
  7147. Return: CF clear if valid function number
  7148.         AX = status???
  7149.     CF set if invalid function
  7150. SeeAlso: INT 15/AX=BFDCh
  7151. --------E-21FF--DH02-------------------------
  7152. INT 21 UP - Rational Systems DOS/4GW - SET ???
  7153.     AH = FFh
  7154.     DH = 02h
  7155.     DL = ???
  7156. Return: CF clear
  7157. --------E-21FF--DH05-------------------------
  7158. INT 21 UP - Rational Systems DOS/4GW - ???
  7159.     AH = FFh
  7160.     DH = 05h
  7161.     BX = ???
  7162. Return: ???
  7163. --------E-21FF--DH06-------------------------
  7164. INT 21 UP - Rational Systems DOS/4GW - ???
  7165.     AH = FFh
  7166.     DH = 06h
  7167.     BX = ???
  7168. Return: ???
  7169. --------E-21FF--DH07-------------------------
  7170. INT 21 UP - Rational Systems DOS/4GW - ???
  7171.     AH = FFh
  7172.     DH = 07h
  7173.     BX = ???
  7174. Return: ???
  7175. --------E-21FF--DH08-------------------------
  7176. INT 21 UP - Rational Systems DOS/4GW - ???
  7177.     AH = FFh
  7178.     DH = 08h
  7179.     BX = ???
  7180.     CX = ???
  7181.     ES = ???
  7182. Return: ???
  7183. --------E-21FF--DH09-------------------------
  7184. INT 21 UP - Rational Systems DOS/4GW - GET ???
  7185.     AH = FFh
  7186.     DH = 09h
  7187. Return: ES:BX -> ???
  7188. --------E-21FF--DH0A-------------------------
  7189. INT 21 UP - Rational Systems DOS/4GW - ???
  7190.     AH = FFh
  7191.     DH = 0Ah
  7192.     AL = ???
  7193.     BX = ???
  7194.     CX = ???
  7195. Return: ES = ??? or 0000h
  7196. --------E-21FF--DH0B-------------------------
  7197. INT 21 UP - Rational Systems DOS/4GW - ???
  7198.     AH = FFh
  7199.     DH = 0Bh
  7200.     AL = ???
  7201.     BX = ???
  7202.     CX = ???
  7203. Return: ???
  7204. --------E-21FF--DH0C-------------------------
  7205. INT 21 UP - Rational Systems DOS/4GW - GET/SET ???
  7206.     AH = FFh
  7207.     DH = 0Ch
  7208.     DL = ??? (00h or 01h)
  7209. Return: CF clear if successful
  7210.         AL = previous value of ???
  7211.     CF set on error (DL out of range)
  7212.         AX = FFFFh
  7213. --------E-21FF--DH0D-------------------------
  7214. INT 21 UP - Rational Systems DOS/4GW - ???
  7215.     AH = FFh
  7216.     DH = 0Dh
  7217.     ???
  7218. Return: ???
  7219. --------E-21FF--DH0E-------------------------
  7220. INT 21 UP - Rational Systems DOS/4GW - ???
  7221.     AH = FFh
  7222.     DH = 0Eh
  7223. Return: DX:AX -> XBRK structure (see INT 15/AX=BF02h)
  7224.     BX = ???
  7225.     CX = ???
  7226. SeeAlso: INT 15/AX=BF02h
  7227. --------E-21FF--DH0F-------------------------
  7228. INT 21 UP - Rational Systems DOS/4GW - ???
  7229.     AH = FFh
  7230.     DH = 0Fh
  7231.     ???
  7232. Return: ???
  7233. --------E-21FF--DH10-------------------------
  7234. INT 21 UP - Rational Systems DOS/4GW - ???
  7235.     AH = FFh
  7236.     DH = 10h
  7237.     AL = ???
  7238.     BX = ???
  7239.     CX = ???
  7240.     DI = ???
  7241.     SI = ???
  7242. Return: ???
  7243. Note:    among other things, frees two memory blocks via INT 21/AH=49h
  7244. --------E-21FF--DH11-------------------------
  7245. INT 21 UP - Rational Systems DOS/4GW - NOP
  7246.     AH = FFh
  7247.     DH = 11h
  7248. --------E-21FF--DH12-------------------------
  7249. INT 21 UP - Rational Systems DOS/4GW - EXCHANGE ??? POINTERS
  7250.     AH = FFh
  7251.     DH = 12h
  7252.     DS:SI -> new ???
  7253.     ES:DI -> new ???
  7254. Return: DS:SI -> previous ???
  7255.     ES:DI -> previous ???
  7256. --------E-21FF--DH13-------------------------
  7257. INT 21 UP - Rational Systems DOS/4GW - ???
  7258.     AH = FFh
  7259.     DH = 13h
  7260.     AL = ???
  7261.     ES = ???
  7262. Return: ???
  7263. --------E-21FF--DH14-------------------------
  7264. INT 21 UP - Rational Systems DOS/4GW - ???
  7265.     AH = FFh
  7266.     DH = 14h
  7267.     BX = ???
  7268.     CX = ???
  7269. Return: CF clear
  7270.         AX = ???
  7271.         DX = ???
  7272. --------E-21FF--DH15-------------------------
  7273. INT 21 UP - Rational Systems DOS/4GW - GET ??? FUNCTIONS
  7274.     AH = FFh
  7275.     DH = 15h
  7276. Return: CF clear
  7277.         DX:AX -> FAR function for ???
  7278.         CX:BX -> FAR function for ???
  7279.         SI:DI -> FAR function for ???
  7280. --------E-21FF--DH16-------------------------
  7281. INT 21 UP - Rational Systems DOS/4GW - GET ???
  7282.     AH = FFh
  7283.     DH = 16h
  7284. Return: AX = ???
  7285. --------E-21FF--DH17-------------------------
  7286. INT 21 UP - Rational Systems DOS/4GW - ???
  7287.     AH = FFH
  7288.     DH = 17h
  7289.     AL = ???
  7290.     DL = ???
  7291. Return: ???
  7292. --------N-21FF00-----------------------------
  7293. INT 21 - TopWare Network OS v5.10+ - GET SYSTEM INFORMATION
  7294.     AX = FF00h
  7295.     CL = what to get
  7296.         00h user information
  7297.         01h drive mapping
  7298.         02h printer server(s)
  7299.         05h local DOS drive number
  7300. Return: ES:BX -> desired information (see below)
  7301. Program: TopWare Network Operating System is manufactured by Grand Computer
  7302.       Company
  7303. Note:    this call is only supported on Workstations, not on the server
  7304. SeeAlso: AX=FF04h,INT 2F/AX=FF00h
  7305.  
  7306. Format of user information:
  7307. Offset    Size    Description
  7308.  00h    BYTE    node ID
  7309.  01h 15 BYTEs    user name
  7310.  10h    WORD    user number
  7311.  12h    BYTE    group number
  7312.  
  7313. Format of drive mapping [array]:
  7314. Offset    Size    Description
  7315.  00h    BYTE    bits 6-0: drive number (1=A:, etc.)
  7316.         bit 7: this is a server drive
  7317.  01h  3 BYTEs    mapping drive (for example, "C:\")
  7318.  04h 64 BYTEs    current directory
  7319. --------E-21FF00DX0078-----------------------
  7320. INT 21 - Rational Systems DOS/4G - INSTALLATION CHECK
  7321.     AX = FF00h
  7322.     DX = 0078h
  7323. Return: AL <> 00h if installed
  7324.         GS = segment of kernel if nonzero
  7325. SeeAlso: INT 15/AX=BF02h
  7326. --------N-21FF04-----------------------------
  7327. INT 21 - TopWare Network OS v5.10+ - GET/SET DEFAULT FILE PROTECTION ATTRIBS
  7328.     AX = FF04h
  7329.     CL = function
  7330.         00h get protections
  7331.         Return: BH = read attribute
  7332.             BL = write attribute
  7333.         01h set protections
  7334.         BH = read attribute
  7335.         BL = write attribute
  7336. Note:    this function is supported only on Workstations, not on the server
  7337. SeeAlso: AX=FF00h"TopWare"
  7338. --------v-21FF0F-----------------------------
  7339. INT 21 - FLU_SHOT+ v1.83 - INSTALLATION CHECK
  7340.     AX = FF0Fh
  7341. Return: AX = 0101h if resident
  7342. Program: FLU_SHOT+ is an antivirus/antitrojan program by Ross M. Greenberg and
  7343.       Software Concepts Design
  7344. Note:    the "PSQR/1720" virus calls this function to determine whether
  7345.       FLU_SHOT+ is present
  7346. SeeAlso: AH=FFh"VIRUS",AX=FF10h
  7347. --------v-21FF10-----------------------------
  7348. INT 21 - VIRUS - "Twins" - INSTALLATION CHECK
  7349.     AX = FF10h
  7350. Return: AL = 07h if resident
  7351. SeeAlso: AX=FF0Fh,AX=FFFEh
  7352. --------N-21FF80DHFF-------------------------
  7353. INT 21 - TopWare Network OS v5.10+ - SEND MESSAGE
  7354.     AX = FF80h
  7355.     DH = FFh
  7356.     DL = destination address (FFh for broadcast)
  7357.     CX = message length (max 2000)
  7358.     DS:SI -> message to be sent (see below)
  7359. Return: nothing
  7360. Program: TopWare Network Operating System is manufactured by Grand Computer
  7361.       Company
  7362. Notes:    this function is supported on both Workstations and the server
  7363.     there is no guarantee that the message will be received correctly, or
  7364.       at all, by the destination
  7365.  
  7366. Format of message:
  7367. Offset    Size    Description
  7368.  00h    BYTE    type code
  7369.         07h TopSend
  7370.         11h user application
  7371.         other reserved for TopWare
  7372.  01h    var    data
  7373. Note:    sending messages with a type code other than 11h will cause
  7374.       unpredictable results
  7375. --------N-21FF82-----------------------------
  7376. INT 21 - TopWare Network OS v5.10+ - GET STATION ADDRESS
  7377.     AX = FF82h
  7378. Return: AL = station address
  7379. Note:    this function is supported on both Workstations and the server
  7380. SeeAlso: AX=FF91h
  7381. --------N-21FF8C-----------------------------
  7382. INT 21 - TopWare Network OS v5.10+ - GET STATUS OF TopShow/Emulated FUNCTION
  7383.     AX = FF8Ch
  7384.     BL = subfunction
  7385.         00h get TopShow status
  7386.         FFh get Emulated status
  7387. Return: AL = status
  7388.         00h not installed
  7389.         01h already installed
  7390. --------N-21FF8D-----------------------------
  7391. INT 21 - TopWare Network OS v5.10+ - CALL TopShow FUNCTION
  7392.     AX = FF8Dh
  7393.     CH = monochrome flag (01h monochrome, 00h not monochrome)
  7394.     CL = screen mode of station to be viewed (see below)
  7395.     BL = graphic page number for monochrome
  7396. Return: AL = status (00h successful, else failed)
  7397. SeeAlso: AX=FF8Eh,AX=FFCFh
  7398.  
  7399. Values for screen mode:
  7400.  00h    text mode
  7401.  01h    720x348
  7402.  02h    640x408
  7403.  03h    720x352
  7404.  04h    640x390
  7405.  05h    reserved
  7406. --------N-21FF8E-----------------------------
  7407. INT 21 - TopWare Network OS v5.10+ - CANCEL TopShow FUNCTION
  7408.     AX = FF8Eh
  7409. Return: AL = 00h (successful, TopShow removed)
  7410. SeeAlso: AX=FF8Dh
  7411. --------N-21FF91-----------------------------
  7412. INT 21 - TopWare Network OS v5.10+ - GET FILE SERVER STATION NUMBER
  7413.     AX = FF91h
  7414. Return: AL = station number of file server
  7415. SeeAlso: AX=FF82h
  7416. --------N-21FF97-----------------------------
  7417. INT 21 - TopWare Network OS v5.10+ - GET MAXIMUM STATION NUMBER (server only)
  7418.     AX = FF97h
  7419. Return: AL = maximum station number
  7420. SeeAlso: AX=FF98h
  7421. --------N-21FF98-----------------------------
  7422. INT 21 - TopWare Network OS v5.10+ - GET MAXIMUM FILE NUMBER (server only)
  7423.     AX = FF98h
  7424. Return: AL = maximum file
  7425. SeeAlso: AX=FF97h
  7426. --------N-21FF9A-----------------------------
  7427. INT 21 - TopWare Network OS v5.10+ - RECEIVE OF USER-DEFINED PACKETS
  7428.     AX = FF9Ah
  7429.     ES:BX -> buffer for user-defined packet (see below)
  7430. Return: nothing
  7431.  
  7432. Format of user-defined packet:
  7433. Offset    Size    Description
  7434.  00h    BYTE    FFh
  7435.  01h    WORD    (call) length of data field plus 3
  7436.         (return) length of received message (0000h if none received)
  7437.  03h    BYTE    destination ID (FFh for broadcast message)
  7438.  04h    BYTE    sending station ID
  7439.  05h    BYTE    type code (11h; all other codes reserved for TopWare)
  7440.  06h  N BYTEs    received message
  7441. --------N-21FF9F-----------------------------
  7442. INT 21 - TopWare Network OS v5.10+ - ENABLE/DISABLE TopTerm SERVICE
  7443.     AX = FF9Fh
  7444.     CL = new state (00h disable [disregard TopTerm packets], 01h enable)
  7445. Return: AL = status (00h successful, FFh failed)
  7446. Note:    this function is only supported by Workstations, not the server
  7447. --------N-21FFB0-----------------------------
  7448. INT 21 - TopWare Network OS v5.10+ - GET SPOOLER PRINTING PRIORITY
  7449.     AX = FFB0h
  7450. Return: AL = priority status (see below)
  7451. SeeAlso: AX=FFB1h
  7452.  
  7453. Bitfields for printer priority status:
  7454.  bit 0    LPT1 has high priority
  7455.  bit 1    LPT2 has high priority
  7456.  bit 2    LPT3 has high priority
  7457. --------N-21FFB1-----------------------------
  7458. INT 21 - TopWare Network OS v5.10+ - SET SPOOLER PRINTING PRIORITY
  7459.     AX = FFB1h
  7460.     CH = printer number (00h LPT1, 01h LPT2, 02h LPT3)
  7461.     CH = new priority (00h normal, 01h high)
  7462. Return: nothing
  7463. SeeAlso: AX=FFB0h
  7464. --------N-21FFB3-----------------------------
  7465. INT 21 - TopWare Network OS v5.10+ - GET DEFAULT START-OF-JOB FORMFEED STATUS
  7466.     AX = FFB3h
  7467. Return: AL = starting formfeed status (see below)
  7468. SeeAlso: AX=FFB4h,AX=FFC0h
  7469.  
  7470. Bitfields for printer start-of-job formfeed status:
  7471.  bit 0    LPT1 has formfeed enabled
  7472.  bit 1    LPT2 has formfeed enabled
  7473.  bit 2    LPT3 has formfeed enabled
  7474. --------N-21FFB4-----------------------------
  7475. INT 21 - TopWare Network OS v5.10+ - SET DEFAULT START-OF-JOB FORMFEED STATUS
  7476.     AX = FFB4h
  7477.     CH = printer number (00h LPT1, 01h LPT2, 02h LPT3)
  7478.     CH = new formfeed status (00h off, 01h on)
  7479. Return: nothing
  7480. SeeAlso: AX=FFB3h,AX=FFC1h
  7481. --------N-21FFBB-----------------------------
  7482. INT 21 - TopWare Network OS v5.10+ - GET PRINTER SERVER STATION ADDRESS
  7483.     AX = FFBBh
  7484.     CH = printer number (00h LPT1, 01h LPT2, 02h LPT3)
  7485. Return: AL = current mapping printer server station number
  7486.         00h if local
  7487. SeeAlso: AX=FFBCh
  7488. --------N-21FFBC-----------------------------
  7489. INT 21 - TopWare Network OS v5.10+ - CANCEL TopShow FUNCTION
  7490.     AX = FFBCh
  7491.     CH = printer number (00h LPT1, 01h LPT2, 02h LPT3)
  7492.     CL = printer server station address or 00h for local printer
  7493. Return: AL = status (00h successful, else failed)
  7494. SeeAlso: AX=FFBBh
  7495. --------N-21FFBD-----------------------------
  7496. INT 21 - TopWare Network OS v5.10+ - GET CURRENT AUTOPRINT TIME
  7497.     AX = FFBDh
  7498.     CH = printer number (00h LPT1, 01h LPT2, 02h LPT3)
  7499. Return: AX = current AutoPrint timeout in clock ticks
  7500. SeeAlso: AX=FFBEh
  7501. --------N-21FFBE-----------------------------
  7502. INT 21 - TopWare Network OS v5.10+ - SET AUTOPRINT TIME
  7503.     AX = FFBEh
  7504.     CH = printer number (00h LPT1, 01h LPT2, 02h LPT3)
  7505.     BX = timeout in clock ticks
  7506. SeeAlso: AX=FFBDh
  7507. --------N-21FFBF-----------------------------
  7508. INT 21 - TopWare Network OS v5.10+ - GET LOGON USER INFORMATION
  7509.     AX = FFBFh
  7510.     DX:BX -> buffer for logon information (see below)
  7511. Return: AL = status (00h successful, else failed)
  7512.     AH = number of logged-in stations
  7513.  
  7514. Format of logon information:
  7515. Offset    Size    Description
  7516.  00h    BYTE    station address
  7517.  01h 15 BYTEs    username
  7518. --------N-21FFC0-----------------------------
  7519. INT 21 - TopWare Network OS v5.10+ - GET DEFAULT END-OF-JOB FORMFEED STATUS
  7520.     AX = FFC0h
  7521. Return: AL = ending formfeed status (see below)
  7522. SeeAlso: AX=FFB3h,AX=FFC1h
  7523.  
  7524. Bitfields for printer end-of-job formfeed status:
  7525.  bit 0    LPT1 has formfeed enabled
  7526.  bit 1    LPT2 has formfeed enabled
  7527.  bit 2    LPT3 has formfeed enabled
  7528. --------N-21FFC1-----------------------------
  7529. INT 21 - TopWare Network OS v5.10+ - SET DEFAULT END-OF-JOB FORMFEED STATUS
  7530.     AX = FFC1h
  7531.     CH = printer number (00h LPT1, 01h LPT2, 02h LPT3)
  7532.     CH = new formfeed status (00h off, 01h on)
  7533. Return: nothing
  7534. SeeAlso: AX=FFB4h,AX=FFC0h
  7535. --------N-21FFC2-----------------------------
  7536. INT 21 - TopWare Network OS v5.10+ - GET DEFAULT COPIES OF SPOOLING FILE
  7537.     AX = FFC2h
  7538.     CH = printer number (00h LPT1, 01h LPT2, 02h LPT3)
  7539. Return: AL = default number of copies printed
  7540. SeeAlso: AX=FFC7h
  7541. --------N-21FFC3-----------------------------
  7542. INT 21 - TopWare Network OS v5.10+ - GET SHARING STATUS OF PRINTER SERVER
  7543.     AX = FFC3h
  7544. Return: AL = sharing status of printers (see below)
  7545.         FFh if not a printer server
  7546.  
  7547. Bitfields for printer sharing status:
  7548.  bit 0    LPT1 is shared
  7549.  bit 1    LPT2 is shared
  7550.  bit 2    LPT3 is shared
  7551. --------N-21FFC4-----------------------------
  7552. INT 21 - TopWare Network OS v5.10+ - GET/SET LPT PORT ON PRINT SERVER
  7553.     AX = FFC4h
  7554.     BL = subfunction
  7555.         00h get
  7556.         Return: AL = mapped printer port on print server
  7557.         01h set
  7558.         CL = network printer port (00h LPT1, 01h LPT2, 02h LPT3)
  7559.     CH = local printer (00h LPT1, 01h LPT2, 02h LPT3)
  7560. --------N-21FFC6-----------------------------
  7561. INT 21 - TopWare Network OS v5.10+ - SET DEFAULT PRINT FILE HEADER
  7562.     AX = FFC6h
  7563.     CH = printer number (00h LPT1, 01h LPT2, 02h LPT3)
  7564.     CL = header state (00h off, 01h on)
  7565. SeeAlso: AX=FFC8h
  7566. --------N-21FFC7-----------------------------
  7567. INT 21 - TopWare Network OS v5.10+ - SET DEFAULT PRINT COPIES
  7568.     AX = FFC7h
  7569.     CH = printer number (00h LPT1, 01h LPT2, 02h LPT3)
  7570.     CL = new default number of copies to print
  7571. SeeAlso: AX=FFC2h
  7572. --------N-21FFC8-----------------------------
  7573. INT 21 - TopWare Network OS v5.10+ - GET DEFAULT PRINT FILE HEADER STATUS
  7574.     AX = FFC8h
  7575. Return: AL = header status for printers (see below)
  7576. SeeAlso: AX=FFC6h
  7577.  
  7578. Bitfields for print header status:
  7579.  bit 0    LPT1 has headers enabled
  7580.  bit 1    LPT2 has headers enabled
  7581.  bit 2    LPT3 has headers enabled
  7582. --------N-21FFC9-----------------------------
  7583. INT 21 - TopWare Network OS v5.10+ - SET PRINTER SHARING
  7584.     AX = FFC9h
  7585.     CH = printer number (00h LPT1, 01h LPT2, 02h LPT3)
  7586.     CL = new sharing state (00h off, 01h on)
  7587. Return: AL = status (00h successful, FFh not printer server)
  7588. --------N-21FFCA-----------------------------
  7589. INT 21 - TopWare Network OS v5.10+ - MOVE FILE FROM ONE PRINT SERVER TO ANOTHER
  7590.     AX = FFCAh
  7591.     CH = printer number (00h LPT1, 01h LPT2, 02h LPT3)
  7592.     CL = original printer server station address
  7593.     BL = target printer server station address
  7594.     DS:DX -> filename (12 bytes)
  7595. Return: AL = status (00h successful, else failed)
  7596. SeeAlso: AX=FFCBh
  7597. --------N-21FFCB-----------------------------
  7598. INT 21 - TopWare Network OS v5.10+ - DELETE FILE FROM SPOOLING QUEUE
  7599.     AX = FFCBh
  7600.     CH = printer number (00h LPT1, 01h LPT2, 02h LPT3)
  7601.     CL = printer server station address
  7602.     DS:DX -> filename (12 bytes)
  7603. Return: AL = status (00h successful, else failed)
  7604. SeeAlso: AX=FFCAh
  7605. --------N-21FFCC-----------------------------
  7606. INT 21 - TopWare Network OS v5.10+ - GET PRINT SERVER'S SPOOLING QUEUE STATUS
  7607.     AX = FFCCh
  7608.     CL = printer server station address
  7609.     BH = start item number of spooling file for print server
  7610.     BL = number of the item to be retrieved
  7611.     DS:DX -> buffer for queued file information (see below)
  7612. Return: AL = status
  7613.         00h successful
  7614.         AH = number of spool files
  7615.         DS:DX buffer filled
  7616.         nonzero failed
  7617.  
  7618. Format of queued file information buffer [16-item array, one element]:
  7619. Offset    Size    Description
  7620.  00h 12 BYTEs    filename
  7621.  0Ch    DWORD    size
  7622.  10h    WORD    date
  7623.  12h    WORD    time
  7624.  14h 15 BYTEs    username
  7625.  23h    BYTE    count
  7626.  24h    BYTE    flag: header
  7627.  25h    BYTE    print number
  7628. --------N-21FFCD-----------------------------
  7629. INT 21 - TopWare Network OS v5.10+ - GET STATUS OF ALL PRINT SERVERS
  7630.     AX = FFCDh
  7631.     DS:DX -> buffer for server status (see below)
  7632. Return: AL = status
  7633.         00h successful
  7634.         AH = number of print servers
  7635.         nonzero failed
  7636.  
  7637. Format of server status:
  7638. Offset    Size    Description
  7639.  00h    BYTE    station address
  7640.  01h 15 BYTEs    username
  7641.  10h    BYTE    flag: 01h printer is shared, 00h sharing disabled
  7642.  11h    BYTE    number of files pending in queue
  7643. --------N-21FFCF-----------------------------
  7644. INT 21 - TopWare Network OS v5.10+ - CALL TopLook FUNCTION
  7645.     AX = FFCFh
  7646.     DH = page number (0-2, 2 is text mode)
  7647.     DL = type
  7648.         00h look at specific screen
  7649.         01h AutoLook on
  7650.         FFh AutoLook off
  7651.     BH = station number wishing to look
  7652.     BL = station number to be looked at
  7653.     CH = monochrome flag (01h monochrome, 00h not monochrome)
  7654.     CL = screen mode (see AX=FF8Dh)
  7655. Return: AL = status (00h successful, nonzero failed)
  7656. SeeAlso: AX=FF8Dh
  7657. --------N-21FFD6-----------------------------
  7658. INT 21 - TopWare Network OS v5.10+ - GET KEYCARD SERIAL NUMBER AND MAX USERS
  7659.     AX = FFD6h
  7660.     ES:BX -> 12-byte buffer for keycard serial number
  7661. Return: CX = maximum number of users
  7662.     ES:BX buffer filled
  7663. --------N-21FFD7-----------------------------
  7664. INT 21 - TopWare Network OS v5.10+ - GET NETWORK PROTECTION ATTRIBUTES STATUS
  7665.     AX = FFD7h
  7666. Return: AL = status (00h disabled, 01h enabled)
  7667. --------N-21FFE3DL00-------------------------
  7668. INT 21 - TopWare Network OS v5.10+ - INITIATE ACCESS TO SPECIFIC PACKET TYPE
  7669.     AX = FFE3h
  7670.     DL = 00h
  7671.     BX = packet type for Ethernet header (IP = 0800h, ARP = 0806h, etc.)
  7672.     ES:DI -> receive routine (see below)
  7673. Return: CF clear if successful
  7674.         AX = handle number
  7675.     CF set on error
  7676.         DH = error code (03h,05h,09h,0Ah,11h) (see below)
  7677. SeeAlso: AX=FFE3h/DL=01h
  7678.  
  7679. Values for error code:
  7680.  01h    invalid handle
  7681.  03h    no interfaces of the specified type found
  7682.  05h    bad packet type
  7683.  09h    insufficient space
  7684.  0Ah    type already being accessed
  7685.  0Ch    unable to send packet (usually hardware error)
  7686.  11h    invalid function
  7687.  
  7688. Receive routine is called with:
  7689.     AX = function
  7690.         0000h request packet buffer
  7691.         CX = packet size
  7692.         Return: ES:DI -> buffer or 0000h:0000h to discard packet
  7693.         0001h packet copied
  7694.         CX = packet size
  7695.         DS:SI -> copied packet (same as returned ES:DI above)
  7696. --------N-21FFE3DL01-------------------------
  7697. INT 21 - TopWare Network OS v5.10+ - END ACCESS TO SPECIFIC PACKET TYPE
  7698.     AX = FFE3h
  7699.     DL = 01h
  7700.     BX = handle returned by AX=FFE3h/DL=00h
  7701. Return: CF clear if successful
  7702.     CF set on error
  7703.         DH = error code (01h,11h) (see AX=FFE3h/DL=00h)
  7704. Note:    the specified access handle will no longer be valid after this call
  7705. SeeAlso: AX=FFE3h/DL=00h
  7706. --------N-21FFE3DL02-------------------------
  7707. INT 21 - TopWare Network OS v5.10+ - SEND PACKET
  7708.     AX = FFE3h
  7709.     DL = 02h
  7710.     CX = length of data buffer
  7711.     DS:SI -> buffer containing data
  7712. Return: CF clear if successful
  7713.     CF set on error
  7714.         DH = error code (0Ch,11h) (see AX=FFE3h/DL=00h)
  7715. --------N-21FFE3DL03-------------------------
  7716. INT 21 - TopWare Network OS v5.10+ - GET LOCAL NETWORK INTERFACE ADDRESS
  7717.     AX = FFE3h
  7718.     DL = 03h
  7719.     ES:DI -> 6-byte buffer for address
  7720. SeeAlso: AX=FFE3h/DL=00h
  7721. --------v-21FFFE-----------------------------
  7722. INT 21 - VIRUS - "08/15"/"Many Fingers" - INSTALLATION CHECK
  7723.     AX = FFFEh
  7724. Return: AX = 0815h if resident
  7725. SeeAlso: AX=FF10h,AX=FFFFh
  7726. --------v-21FFFF-----------------------------
  7727. INT 21 - VIRUS - "Ontario", "Year 1992"/"B1M92" - INSTALLATION CHECK
  7728.     AX = FFFFh
  7729. Return: AX = 0000h if "Ontario" resident
  7730.     AX = 1992h if "Year 1992"/"B1M92" resident
  7731. SeeAlso: AX=FF0Fh,AX=FFFFh/CX=0000h,INT 6B"VIRUS"
  7732. --------v-21FFFFCX0000-----------------------
  7733. INT 21 - VIRUS - "Revenge" - INSTALLATION CHECK
  7734.     AX = FFFFh
  7735.     CX = 0000h
  7736. Return: CX = 0006h if resident
  7737. SeeAlso: AX=FFFFh,INT 6B"VIRUS"
  7738. --------!------------------------------------
  7739.