home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / misc / inter41 / interrup.e < prev    next >
Text File  |  1994-06-05  |  282KB  |  7,355 lines

  1. Interrupt List, part 5 of 11
  2. This compilation is Copyright (c) 1989,1990,1991,1992,1993,1994 Ralf Brown
  3. --------D-2145-------------------------------
  4. INT 21 - DOS 2+ - "DUP" - DUPLICATE FILE HANDLE
  5.     AH = 45h
  6.     BX = file handle
  7. Return: CF clear if successful
  8.         AX = new handle
  9.     CF set on error
  10.         AX = error code (04h,06h) (see #0770 at AH=59h)
  11. Notes:    moving file pointer for either handle will also move it for the other,
  12.       because both will refer to the same system file table
  13.     for DOS versions prior to 3.3, file writes may be forced to disk by
  14.       duplicating the file handle and closing the duplicate
  15. SeeAlso: AH=3Dh,AH=46h
  16. --------D-2146-------------------------------
  17. INT 21 - DOS 2+ - "DUP2", "FORCEDUP" - FORCE DUPLICATE FILE HANDLE
  18.     AH = 46h
  19.     BX = file handle
  20.     CX = file handle to become duplicate of first handle
  21. Return: CF clear if successful
  22.     CF set on error
  23.         AX = error code (04h,06h) (see #0770 at AH=59h)
  24. Notes:    closes file with handle CX if it is still open
  25.     DOS 3.30 hangs if BX=CX on entry
  26.     moving file pointer for either handle will also move it for the other,
  27.       because both will refer to the same system file table
  28. SeeAlso: AH=3Dh,AH=45h
  29. --------D-2147-------------------------------
  30. INT 21 - DOS 2+ - "CWD" - GET CURRENT DIRECTORY
  31.     AH = 47h
  32.     DL = drive number (00h = default, 01h = A:, etc)
  33.     DS:SI -> 64-byte buffer for ASCIZ pathname
  34. Return: CF clear if successful
  35.         AX = 0100h (undocumented)
  36.     CF set on error
  37.         AX = error code (0Fh) (see #0770 at AH=59h)
  38. Notes:    the returned path does not include a drive or the initial backslash
  39.     many Microsoft products for Windows rely on AX being 0100h on success
  40.     under the FlashTek X-32 DOS extender, the buffer pointer is in DS:ESI
  41. SeeAlso: AH=19h,AH=3Bh,AH=71h,INT 15/AX=DE25h
  42. --------D-2148-------------------------------
  43. INT 21 - DOS 2+ - ALLOCATE MEMORY
  44.     AH = 48h
  45.     BX = number of paragraphs to allocate
  46. Return: CF clear if successful
  47.         AX = segment of allocated block
  48.     CF set on error
  49.         AX = error code (07h,08h) (see #0770 at AH=59h)
  50.         BX = size of largest available block
  51. Notes:    DOS 2.1-6.0 coalesces free blocks while scanning for a block to
  52.       allocate
  53.     .COM programs are initially allocated the largest available memory
  54.       block, and should free some memory with AH=49h before attempting any
  55.       allocations
  56.     under the FlashTek X-32 DOS extender, EBX contains a protected-mode
  57.       near pointer to the allocated block on a successful return
  58. SeeAlso: AH=49h,AH=4Ah,AH=58h,AH=83h
  59. --------D-2149-------------------------------
  60. INT 21 - DOS 2+ - FREE MEMORY
  61.     AH = 49h
  62.     ES = segment of block to free
  63. Return: CF clear if successful
  64.     CF set on error
  65.         AX = error code (07h,09h) (see #0770 at AH=59h)
  66. Notes:    apparently never returns an error 07h, despite official docs; DOS 2.1+
  67.       code contains only an error 09h exit
  68.     DOS 2.1-6.0 does not coalesce adjacent free blocks when a block is
  69.       freed, only when a block is allocated or resized
  70.     the code for this function is identical in DOS 2.1-6.0 except for
  71.       calls to start/end a critical section in DOS 3+
  72. SeeAlso: AH=48h,AH=4Ah
  73. --------D-214A-------------------------------
  74. INT 21 - DOS 2+ - RESIZE MEMORY BLOCK
  75.     AH = 4Ah
  76.     BX = new size in paragraphs
  77.     ES = segment of block to resize
  78. Return: CF clear if successful
  79.     CF set on error
  80.         AX = error code (07h,08h,09h) (see #0770 at AH=59h)
  81.         BX = maximum paragraphs available for specified memory block
  82. Notes:    under DOS 2.1-6.0, if there is insufficient memory to expand the block
  83.       as much as requested, the block will be made as large as possible
  84.     DOS 2.1-6.0 coalesces any free blocks immediately following the block
  85.       to be resized
  86. SeeAlso: AH=48h,AH=49h,AH=83h
  87. --------v-214A--BX00B6-----------------------
  88. INT 21 - VIRUS???
  89.     AH = 4Ah
  90.     BX = 00B6h
  91.     ES = CX
  92. Return: ???
  93. Note:    this call is intercepted by the Search&Destroy SDRes v27.03 bundled
  94.       with Novell DOS 7, and is presumably some virus's installation check
  95. SeeAlso: AH=0Eh/DL=ADh,AH=4Ah/BX=FFFFh,AH=D2h"VIRUS"
  96. --------v-214A--BXFFFF-----------------------
  97. INT 21 - VIRUS???
  98.     AH = 4Ah
  99.     BX = FFFFh
  100.     CX = 0568h
  101.     SI = 0129h
  102.     DI = 0000h
  103.     ES = BP
  104. Return: ???
  105. Note:    this call is intercepted by the Search&Destroy SDRes v27.03 bundled
  106.       with Novell DOS 7, and is presumably some virus's installation check
  107. SeeAlso: AH=0Eh/DL=ADh,AH=4Ah/BX=00B6h
  108. --------D-214B-------------------------------
  109. INT 21 - DOS 2+ - "EXEC" - LOAD AND/OR EXECUTE PROGRAM
  110.     AH = 4Bh
  111.     AL = type of load
  112.         00h load and execute
  113.         01h load but do not execute
  114.         03h load overlay
  115.         04h load and execute in background (European MS-DOS 4.0 only)
  116.         "Exec & Go" (see also AH=80h)
  117.     DS:DX -> ASCIZ program name (must include extension)
  118.     ES:BX -> parameter block (see #0687)
  119.     CX = mode (subfunction 04h only)
  120.         0000h child placed in zombie mode after termination
  121.         0001h child's return code discarded on termination
  122. Return: CF clear if successful
  123.         BX,DX destroyed
  124.         if subfunction 01h, process ID set to new program's PSP; get with
  125.         INT 21/AH=62h
  126.     CF set on error
  127.         AX = error code (01h,02h,05h,08h,0Ah,0Bh) (see #0770 at AH=59h)
  128. Notes:    DOS 2.x destroys all registers, including SS:SP
  129.     under ROM-based DOS, if no disk path characters (colons or slashes)
  130.       are included in the program name, the name is searched for in the
  131.       ROM module headers (see #0692) before searching on disk
  132.     for functions 00h and 01h, the calling process must ensure that there
  133.       is enough unallocated memory available; if necessary, by releasing
  134.       memory with AH=49h or AH=4Ah
  135.     for function 01h, the AX value to be passed to the child program is put
  136.       on top of the child's stack
  137.     for function 03h, DOS assumes that the overlay is being loaded into
  138.       memory allocated by the caller
  139.     function 01h was undocumented prior to the release of DOS 5.0
  140.     some versions (such as DR-DOS 6.0) check the parameters and parameter
  141.       block and return an error if an invalid value (such as an offset of
  142.       FFFFh) is found
  143.     background programs under European MS-DOS 4.0 must use the new
  144.       executable format
  145.     .COM-format executables begin running with the following register
  146.       values:
  147.         AL = 00h if first FCB has valid drive letter, FFh if not
  148.         AH = 00h if second FCB has valid drive letter, FFh if not
  149.         CS,DS,ES,SS = PSP segment
  150.         SP = offset of last word available in first 64K segment
  151.         (note: AX is always 0000h under DESQview)
  152.     old-format executables begin running with the following register
  153.       values:
  154.         AL = 00h if first FCB has valid drive letter, FFh if not
  155.         AH = 00h if second FCB has valid drive letter, FFh if not
  156.         DS,ES = PSP segment
  157.         SS:SP as defined in .EXE header
  158.         (note: AX is always 0000h under DESQview)
  159.     new executables begin running with the following register values
  160.         AX = environment segment
  161.         BX = offset of command tail in environment segment
  162.         CX = size of automatic data segment (0000h = 64K)
  163.         ES,BP = 0000h
  164.         DS = automatic data segment
  165.         SS:SP = initial stack
  166.       the command tail corresponds to an old executable's PSP:0081h and
  167.       following, except that the 0Dh is turned into a NUL (00h); new
  168.       format executables have no PSP
  169.     under the FlashTek X-32 DOS extender, only function 00h is supported
  170.       and the pointers are passed in DS:EDX and ES:EBX
  171.     DR-DOS 6 always loads .EXE-format programs with no fixups and 
  172.       .COM-format programs starting with 9Ch 55h (PUSHF/PUSH BP) above the
  173.       64K mark to avoid the EXEPACK bug, by extending the memory block
  174.       containing the program's environment; this code is disabled if the
  175.       name of the parent program as stored in the MCB is 'WIN'.
  176. BUGS:    DOS 2.00 assumes that DS points at the current program's PSP
  177.     Load Overlay (subfunction 03h) loads up to 512 bytes too many if the
  178.       file contains additional data after the actual overlay
  179. SeeAlso: AX=4B05h,AH=4Ch,AH=4Dh,AH=64h"OS/2",AH=8Ah,INT 2E,INT 60/DI=0604h
  180.  
  181. Format of EXEC parameter block for AL=00h,01h,04h:
  182. Offset    Size    Description    (Table 0687)
  183.  00h    WORD    segment of environment to copy for child process (copy caller's
  184.           environment if 0000h)
  185.  02h    DWORD    pointer to command tail to be copied into child's PSP
  186.  06h    DWORD    pointer to first FCB to be copied into child's PSP
  187.  0Ah    DWORD    pointer to second FCB to be copied into child's PSP
  188.  0Eh    DWORD    (AL=01h) will hold subprogram's initial SS:SP on return
  189.  12h    DWORD    (AL=01h) will hold entry point (CS:IP) on return
  190.  
  191. Format of EXEC parameter block for AL=03h:
  192. Offset    Size    Description    (Table 0688)
  193.  00h    WORD    segment at which to load overlay
  194.  02h    WORD    relocation factor to apply to overlay if in .EXE format
  195.  
  196. Format of EXEC parameter block for FlashTek X-32:
  197. Offset    Size    Description    (Table 0689)
  198.  00h    PWORD    48-bit far pointer to environment string
  199.  06h    PWORD    48-bit far pointer to command tail string
  200.  
  201. (Table 0690)
  202. Values for the executable types understood by various environments:
  203.  MZ    old-style DOS executable
  204.  NE    Windows or OS/2 1.x segmented ("new") executable
  205.  LE    Windows virtual device driver (VxD) linear executable
  206.  LX    variant of LE used in OS/2 2.x
  207.  W3    Windows WIN386.EXE file; a collection of LE files
  208.  PE    Win32 (Windows NT and Win32s) portable executable based on Unix COFF
  209.  
  210. Format of .EXE file header:
  211. Offset    Size    Description    (Table 0691)
  212.  00h  2 BYTEs    .EXE signature, either "MZ" or "ZM" (5A4Dh or 4D5Ah)
  213.  02h    WORD    number of bytes in last 512-byte page of executable
  214.  04h    WORD    total number of 512-byte pages in executable (includes any
  215.         partial last page)
  216.  06h    WORD    number of relocation entries
  217.  08h    WORD    header size in paragraphs
  218.  0Ah    WORD    minimum paragraphs of memory to allocation in addition to
  219.         executable's size
  220.  0Ch    WORD    maximum paragraphs to allocate in addition to executable's size
  221.  0Eh    WORD    initial SS relative to start of executable
  222.  10h    WORD    initial SP
  223.  12h    WORD    checksum (one's complement of sum of all words in executable)
  224.  14h    DWORD    initial CS:IP relative to start of executable
  225.  18h    WORD    offset within header of relocation table
  226.         40h or greater for new-format (NE,LE,LX,W3,PE,etc.) executable
  227.  1Ah    WORD    overlay number (normally 0000h = main program)
  228. ---new executable---
  229.  1Ch  4 BYTEs    ???
  230.  20h    WORD    behavior bits
  231.  22h 26 BYTEs    reserved for additional behavior info
  232.  3Ch    DWORD    offset of new executable (NE,LE,etc) header within disk file,
  233.         or 00000000h if plain MZ executable
  234. ---Borland TLINK---
  235.  1Ch  2 BYTEs    ??? (apparently always 01h 00h)
  236.  1Eh    BYTE    signature FBh
  237.  1Fh    BYTE    TLINK version (major in high nybble, minor in low nybble)
  238.  20h  2 BYTEs    ??? (v2.0 apparently always 72h 6Ah, v3.0+ seems always 6Ah 72h)
  239. ---ARJ self-extracting archive---
  240.  1Ch  4 BYTEs    signature "RJSX" (older versions, new signature is "aRJsfX" in
  241.         the first 1000 bytes of the file)
  242. ---LZEXE 0.90 compressed executable---
  243.  1Ch  4 BYTEs    signature "LZ09"
  244. ---LZEXE 0.91 compressed executable---
  245.  1Ch  4 BYTEs    signature "LZ91"
  246. ---PKLITE compressed executable---
  247.  1Ch    BYTE    minor version number
  248.  1Dh    BYTE    bits 0-3: major version
  249.         bit 4: extra compression
  250.         bit 5: huge (multi-segment) file
  251.  1Eh  6 BYTEs    signature "PKLITE" (followed by copyright message)
  252. ---LHarc 1.x self-extracting archive---
  253.  1Ch  4 BYTEs    unused???
  254.  20h  3 BYTEs    jump to start of extraction code
  255.  23h  2 BYTEs    ???
  256.  25h 12 BYTEs    signature "LHarc's SFX "
  257. ---LHA 2.x self-extracting archive---
  258.  1Ch  8 BYTEs    ???
  259.  24h 10 BYTEs    signature "LHa's SFX " (v2.10) or "LHA's SFX " (v2.13)
  260. ---TopSpeed C 3.0 CRUNCH compressed file---
  261.  1Ch    DWORD    018A0001h
  262.  20h    WORD    1565h
  263. ---PKARCK 3.5 self-extracting archive---
  264.  1Ch    DWORD    00020001h
  265.  20h    WORD    0700h
  266. ---BSA (Soviet archiver) self-extracting archive---
  267.  1Ch    WORD    000Fh
  268.  1Eh    BYTE    A7h
  269. ---LARC self-extracting archive---
  270.  1Ch  4 BYTEs    ???
  271.  20h 11 BYTEs    "SFX by LARC "
  272. ---LH self-extracting archive---
  273.  1Ch  8 BYTEs    ???
  274.  24h  8 BYTEs    "LH's SFX "
  275. ---other linkers---
  276.  1Ch    var    optional information
  277. ---
  278.   N   N DWORDs    relocation items
  279. Notes:    if word at offset 02h is 4, it should be treated as 00h, since pre-1.10
  280.       versions of the MS linker set it that way
  281.     if both minimum and maximum allocation (offset 0Ah/0Ch) are zero, the
  282.       program is loaded as high in memory as possible
  283.     the maximum allocation is set to FFFFh by default
  284.  
  285. Format of ROM Module Header:
  286. Offset    Size    Description    (Table 0692)
  287.  00h  2 BYTEs    ROM signature 55h, AAh
  288.  02h    BYTE    size of ROM in 512-byte blocks
  289.  03h  3 BYTEs    POST initialization entry point (near JMP instruction)
  290.  06h    ROM Program Name List [array]
  291.     Offset    Size    Description
  292.      00h    BYTE    length of ROM program's name (00h if end of name list)
  293.      01h  N BYTEs    program name
  294.      N+1  3 BYTEs    program entry point (near JMP instruction)
  295.  
  296. Format of new executable header:
  297. Offset    Size    Description    (Table 0693)
  298.  00h  2 BYTEs    "NE" (4Eh 45h) signature
  299.  02h  2 BYTEs    linker version (major, then minor)
  300.  04h    WORD    offset from start of this header to entry table (see #0700)
  301.  06h    WORD    length of entry table in bytes
  302.  08h    DWORD    file load CRC (0 in Borland's TPW)
  303.  0Ch    BYTE    program flags (see #0694)
  304.  0Dh    BYTE    application flags (see #0695)
  305.  0Eh    WORD    auto data segment index
  306.  10h    WORD    initial local heap size
  307.  12h    WORD    initial stack size (added to data seg, 0000h if SS <> DS)
  308.  14h    DWORD    program entry point (CS:IP), "CS" is index into segment table
  309.  18h    DWORD    initial stack pointer (SS:SP), "SS" is segment index
  310.         if SS=automatic data segment and SP=0000h, the stack pointer is
  311.           set to the top of the automatic data segment, just below the
  312.           local heap
  313.  1Ch    WORD    segment count
  314.  1Eh    WORD    module reference count
  315.  20h    WORD    length of nonresident names table in bytes
  316.  22h    WORD    offset from start of this header to segment table (see #0698)
  317.  24h    WORD    offset from start of this header to resource table
  318.  26h    WORD    offset from start of this header to resident names table
  319.  28h    WORD    offset from start of this header to module reference table
  320.  2Ah    WORD    offset from start of this header to imported names table
  321.         (array of counted strings, terminated with a string of length
  322.           00h)
  323.  2Ch    DWORD    offset from start of file to nonresident names table
  324.  30h    WORD    count of moveable entry point listed in entry table
  325.  32h    WORD    file alignment size shift count
  326.         0 is equivalent to 9 (default 512-byte pages)
  327.  34h    WORD    number of resource table entries
  328.  36h    BYTE    target operating system
  329.         00h unknown
  330.         01h OS/2
  331.         02h Windows
  332.         03h European MS-DOS 4.x
  333.         04h Windows 386
  334.         05h BOSS (Borland Operating System Services)
  335.  37h    BYTE    other EXE flags (see #0696)
  336.  38h    WORD    offset to return thunks or start of gangload area
  337.  3Ah    WORD    offset to segment reference thunks or length of gangload area
  338.  3Ch    WORD    minimum code swap area size
  339.  3Eh  2 BYTEs    expected Windows version (minor version first)
  340. Note:    this header is documented in detail in the Windows 3.1 SDK Programmer's
  341.       Reference, Vol 4.
  342.  
  343. Bitfields for new executable program flags:
  344. Bit(s)    Description    (Table 0694)
  345.  0-1    DGROUP type
  346.       0 = none
  347.       1 = single shared
  348.       2 = multiple (unshared)
  349.       3 = (null)
  350.  2    global initialization
  351.  3    protected mode only
  352.  4    8086 instructions
  353.  5    80286 instructions
  354.  6    80386 instructions
  355.  7    80x87 instructions
  356.  
  357. Bitfields for new executable application flags:
  358. Bit(s)    Description    (Table 0695)
  359.  0-2    application type
  360.     001 full screen (not aware of Windows/P.M. API)
  361.     010 compatible with Windows/P.M. API
  362.     011 uses Windows/P.M. API
  363.  3    is a Family Application (OS/2)
  364.  5    0=executable, 1=errors in image
  365.  6    non-conforming program (valid stack is not maintained)
  366.  7    DLL or driver rather than application
  367.     (SS:SP info invalid, CS:IP points at FAR init routine called with
  368.       AX=module handle which returns AX=0000h on failure, AX nonzero on
  369.       successful initialization)
  370.  
  371. Bitfields for other new .EXE flags:
  372. Bit(s)    Description    (Table 0696)
  373.  0    supports long filenames
  374.  1    2.X protected mode
  375.  2    2.X proportional font
  376.  3    gangload area
  377.  
  378. Format of Codeview trailer (at end of executable):
  379. Offset    Size    Description    (Table 0697)
  380.  00h    WORD    signature 4E42h ('NB')
  381.  02h    WORD    Microsoft debug info version number
  382.  04h    DWORD    Codeview header offset
  383.  
  384. Format of new executable segment table record:
  385. Offset    Size    Description    (Table 0698)
  386.  00h    WORD    offset in file (shift left by alignment shift to get byte offs)
  387.  02h    WORD    length of image in file (0000h = 64K)
  388.  04h    WORD    segment attributes (see #0699)
  389.  06h    WORD    number of bytes to allocate for segment (0000h = 64K)
  390. Note:    the first segment table entry is entry number 1
  391.  
  392. Bitfields for segment attributes:
  393. Bit(s)    Description    (Table 0699)
  394.  0    data segment rather than code segment
  395.  1    unused???
  396.  2    real mode
  397.  3    iterated
  398.  4    movable
  399.  5    sharable
  400.  6    preloaded rather than demand-loaded
  401.  7    execute-only (code) or read-only (data)
  402.  8    relocations (directly following code for this segment)
  403.  9    debug info present
  404.  10,11    80286 DPL bits
  405.  12    discardable
  406.  13-15    discard priority
  407.  
  408. Format of new executable entry table item (list):
  409. Offset    Size    Description    (Table 0700)
  410.  00h    BYTE    number of entry points (00h if end of entry table list)
  411.  01h    BYTE    segment number (00h if end of entry table list)
  412.  02h 3N BYTEs    entry records
  413.         Offset    Size    Description
  414.          00h    BYTE    flags
  415.                 bit 0: exported
  416.                 bit 1: single data
  417.                 bits 2-7: unused???
  418.          01h    WORD    offset within segment
  419.  
  420. Format of new executable relocation data (immediately follows segment image):
  421. Offset    Size    Description    (Table 0701)
  422.  00h    WORD    number of relocation items
  423.  02h 8N BYTEs    relocation items
  424.         Offset    Size    Description
  425.          00h    BYTE    relocation type
  426.                 00h LOBYTE
  427.                 02h BASE
  428.                 03h PTR
  429.                 05h OFFS
  430.                 0Bh PTR48
  431.                 0Dh OFFS32
  432.          01h    BYTE    flags
  433.                 bit 2: additive
  434.          02h    WORD    offset within segment
  435.          04h    WORD    target address segment
  436.          06h    WORD    target address offset
  437.  
  438. Format of new executable resource data:
  439. Offset    Size    Description    (Table 0702)
  440.  00h    WORD    alignment shift count for resource data
  441.  02h  N RECORDs resources
  442.     Format of resource record:
  443.     Offset    Size    Description
  444.      00h    WORD    type ID
  445.             0000h if end of resource records
  446.             >= 8000h if integer type
  447.             else offset from start of resource table to type string
  448.      02h    WORD    number of resources of this type
  449.      04h    DWORD    reserved for runtime use
  450.      08h  N Resources (see #0703)
  451. Note:    resource type and name strings are stored immediately following the
  452.       resource table, and are not null-terminated
  453.  
  454. Format of new executable resource entry:
  455. Offset    Size    Description    (Table 0703)
  456.  00h    WORD    offset in alignment units from start of file to contents of
  457.         the resource data
  458.  02h    WORD    length of resource image in bytes
  459.  04h    WORD    flags
  460.         bit 4: moveable
  461.         bit 5: shareable
  462.         bit 6: preloaded
  463.  06h    WORD    resource ID
  464.         >= 8000h if integer resource
  465.         else offset from start of resource table to resource string
  466.  08h    DWORD    reserved for runtime use
  467. Notes:    resource type and name strings are stored immediately following the
  468.       resource table, and are not null-terminated
  469.     strings are counted strings, with a string of length 0 indicating the
  470.       end of the resource table
  471.  
  472. Format of new executable module reference table [one bundle of entries]:
  473. Offset    Size    Description    (Table 0704)
  474.  00h    BYTE    number of records in this bundle (00h if end of table)
  475.  01h    BYTE    segment indicator
  476.         00h unused
  477.         FFh movable segment, segment number is in entry
  478.         else segment number of fixed segment
  479.  02h  N RECORDs
  480.     Format of segment record
  481.     Offset    Size    Description
  482.      00h    BYTE    flags
  483.             bit 0: entry is exported
  484.             bit 1: entry uses global (shared) data
  485.             bits 7-3: number of parameter words
  486.     ---fixed segment---
  487.      01h    WORD    offset
  488.     ---moveable segment---
  489.      01h  2 BYTEs    INT 3F instruction (CDh 3Fh)
  490.      03h    BYTE    segment number
  491.      05h    WORD    offset
  492. Note:    table entries are numbered starting from 1
  493.  
  494. Format of new executable resident/nonresident name table entry:
  495. Offset    Size    Description    (Table 0705)
  496.  00h    BYTE    length of string (00h if end of table)
  497.  01h  N BYTEs    ASCII text of string
  498.  N+1    WORD    ordinal number (index into entry table)
  499. Notes:    the first string in the resident name table is the module name; the
  500.       first entry in the nonresident name table is the module description
  501.     the strings are case-sensitive; if the executable was linked with
  502.       /IGNORECASE, all strings are in uppercase
  503.  
  504. Format of Linear Executable (enhanced mode executable) header:
  505. Offset    Size    Description    (Table 0706)
  506.  00h  2 BYTEs    "LE" (4Ch 45h) signature (Windows)
  507.         "LX" (4Ch 58h) signature (OS/2)
  508.  02h    BYTE    byte order (00h = little-endian, nonzero = big-endian)
  509.  03h    BYTE    word order (00h = little-endian, nonzero = big-endian)
  510.  04h    DWORD    executable format level
  511.  08h    WORD    CPU type (see also INT 15/AH=C9h)
  512.         01h Intel 80286 or upwardly compatible
  513.         02h Intel 80386 or upwardly compatible
  514.         03h Intel 80486 or upwardly compatible
  515.         04h Intel Pentium (80586) or upwardly compatible
  516.         20h Intel i860 (N10) or compatible
  517.         21h Intel "N11" or compatible
  518.         40h MIPS Mark I (R2000, R3000) or compatible
  519.         41h MIPS Mark II (R6000) or compatible
  520.         42h MIPS Mark III (R4000) or compatible
  521.  0Ah    WORD    target operating system
  522.         01h OS/2
  523.         02h Windows
  524.         03h European DOS 4.0
  525.         04h Windows 386
  526.  0Ch    DWORD    module version
  527.  10h    DWORD    module type (see #0707)
  528.  14h    DWORD    number of memory pages
  529.  18h    Initial CS:EIP
  530.     DWORD    object number
  531.     DWORD    offset
  532.  20h    Initial SS:ESP
  533.     DWORD    object number
  534.     DWORD    offset
  535.  28h    DWORD    memory page size
  536.  2Ch    DWORD    (Windows LE) bytes on last page
  537.         (OS/2 LX) page offset shift count
  538.  30h    DWORD    fixup section size
  539.  34h    DWORD    fixup section checksum
  540.  38h    DWORD    loader section size
  541.  3Ch    DWORD    loader section checksum
  542.  40h    DWORD    offset of object table (see #0708)
  543.  44h    DWORD    object table entries
  544.  48h    DWORD    object page map table offset
  545.  4Ch    DWORD    object iterate data map offset
  546.  50h    DWORD    resource table offset
  547.  54h    DWORD    resource table entries
  548.  58h    DWORD    resident names table offset
  549.  5Ch    DWORD    entry table offset
  550.  60h    DWORD    module directives table offset
  551.  64h    DWORD    Module Directives entries
  552.  68h    DWORD    Fixup page table offset
  553.  6Ch    DWORD    Fixup record table offset
  554.  70h    DWORD    imported modules name table offset
  555.  74h    DWORD    imported modules count
  556.  78h    DWORD    imported procedures name table offset
  557.  7Ch    DWORD    per-page checksum table offset
  558.  80h    DWORD    data pages offset
  559.  84h    DWORD    preload page count
  560.  88h    DWORD    non-resident names table offset
  561.  8Ch    DWORD    non-resident names table length
  562.  90h    DWORD    non-resident names checksum
  563.  94h    DWORD    automatic data object
  564.  98h    DWORD    debug information offset
  565.  9Ch    DWORD    debug information length
  566.  A0h    DWORD    preload instance pages number
  567.  A4h    DWORD    demand instance pages number
  568.  A8h    DWORD    extra heap allocation
  569.  ACh 20 BYTEs    reserved
  570.  C0h    WORD    device ID (MS-Windows VxD only)
  571.  C2h    WORD    DDK version (MS-Windows VxD only)
  572. Note:    used by EMM386.EXE, QEMM, and Windows 3.0 Enhanced Mode drivers
  573.  
  574. Bitfields for Linear Executable module type:
  575. Bit(s)    Description    (Table 0707)
  576.  2    initialization (only for DLLs) 0 = global, 1 = per-process
  577.  4    no internal fixups in executable image
  578.  5    no external fixups in executable image
  579.  8-10    API compatibility
  580.     0 = unknown
  581.     1 = incompatible with PM windowing \
  582.     2 = compatible with PM windowing    > (only for
  583.     3 = uses PM windowing API       /    programs)
  584.  13    module not loadable (only for programs)
  585.  15-17    module type
  586.     000 program
  587.     001 library (DLL)
  588.     011 protected memory library module
  589.     100 physical device driver
  590.     110 virtual device driver
  591.  30    per-process library termination
  592.     (requires valid CS:EIP, can't be set for .EXE)
  593.  
  594. Format of object table entry:
  595. Offset    Size    Description    (Table 0708)
  596.  00h    DWORD    virtual size in bytes
  597.  04h    DWORD    relocation base address
  598.  08h    DWORD    object flags (see #0709)
  599.  0Ch    DWORD    page map index
  600.  10h    DWORD    page map entries
  601.  14h  4 BYTEs    reserved??? (apparently always zeros)
  602.  
  603. Bitfields for object flags:
  604. Bit(s)    Description    (Table 0709)
  605.  0    readable
  606.  1    writable
  607.  2    executable
  608.  3    resource
  609.  4    discardable
  610.  5    shared
  611.  6    preloaded
  612.  7    invalid
  613.  8-9    type
  614.     00 normal
  615.     01 zero-filled
  616.     10 resident
  617.     11 resident and contiguous
  618.  10    resident and long-lockable
  619.  11    reserved
  620.  12    16:16 alias required
  621.  13    "BIG" (Huge: 32-bit)
  622.  14    conforming
  623.  15    "OBJECT_I/O_PRIVILEGE_LEVEL"
  624.  16-31    reserved
  625.  
  626. Format of object page map table entry:
  627. Offset    Size    Description    (Table 0710)
  628.  00h    BYTE    ??? (usually 00h)
  629.  01h    WORD    (big-endian) index to fixup table
  630.         0000h if no relocation info
  631.  03h    BYTE    type (00h hard copy in file, 03h some relocation needed)
  632.  
  633. Format of resident names table entry:
  634. Offset    Size    Description    (Table 0711)
  635.  00h    BYTE    length of name
  636.  01h  N BYTEs    name
  637.  N+1  3 BYTEs    ???
  638.  
  639. Format of LE linear executable entry table:
  640. Offset    Size    Description    (Table 0712)
  641.  00h    BYTE    number of entries in table
  642.  01h 10 BYTEs per entry
  643.         Offset    Size    Description
  644.          00h    BYTE    bit flags
  645.                 bit 0: non-empty bundle
  646.                 bit 1: 32-bit entry
  647.          01h    WORD    object number
  648.          03h    BYTE    entry type flags
  649.                 bit 0: exported
  650.                 bit 1: uses single data rather than instance
  651.                 bit 2: reserved
  652.                 bits 3-7: number of stack parameters
  653.          04h    DWORD    offset of entry point
  654.          08h  2 BYTEs    ???
  655. Note:    empty bundles (bit flags at 00h = 00h) are used to skip unused indices,
  656.       and do not contain the remaining nine bytes
  657.  
  658. Format of LX linear executable entry table [array]:
  659. Offset    Size    Description    (Table 0713)
  660.  00h    BYTE    number of bundles following (00h = end of entry table)
  661.  01h    BYTE    bundle type
  662.         00h empty
  663.         01h 16-bit entry
  664.         02h 286 callgate entry
  665.         03h 32-bit entry
  666.         04h forwarder entry
  667.         bit 7 set if additional parameter typing information is present
  668. ---bundle type 00h---
  669.  no additional fields
  670. ---bundle type 01h---
  671.  02h    WORD    object number
  672.  04h    BYTE    entry flags
  673.         bit 0: exported
  674.         bits 7-3: number of stack parameters
  675.  05h    WORD    offset of entry point in object (shifted by page size shift)
  676. ---bundle type 02h---
  677.  02h    WORD    object number
  678.  04h    BYTE    entry flags
  679.         bit 0: exported
  680.         bits 7-3: number of stack parameters
  681.  05h    WORD    offset of entry point in object
  682.  07h    WORD    reserved for callgate selector (used by loader)
  683. ---bundle type 03h---
  684.  02h    WORD    object number
  685.  04h    BYTE    entry flags
  686.         bit 0: exported
  687.         bits 7-3: number of stack parameters
  688.  05h    DWORD    offset of entry point in object
  689. ---bundle type 04h---
  690.  02h    WORD    reserved
  691.  04h    BYTE    forwarder flags
  692.         bit 0: import by ordinal
  693.         bits 7-1 reserved
  694.  05h    WORD    module ordinal
  695.         (forwarder's index into Import Module Name table)
  696.  07h    DWORD    procedure name offset or import ordinal number
  697. Note:    all fields after the first two bytes are repeated N times
  698.  
  699. Bitfields for linear executable fixup type:
  700. Bit(s)    Description    (Table 0714)
  701.  7    ordinal is BYTE rather than WORD
  702.  6    16-rather than 8-object number/module ordinal
  703.  5    addition with DWORD rather than WORD
  704.  4    relocation info has size with new two bytes at end
  705.  3    reserved (0)
  706.  2    set if add to destination, clear to replace destination
  707.  1-0    type
  708.     00 internal fixup
  709.     01 external fixup, imported by ordinal
  710.     10 external fixup, imported by name
  711.     11 internal fixup via entry table
  712.  
  713. Format of linear executable fixup record:
  714. Offset    Size    Description    (Table 0715)
  715.  00h    BYTE    type
  716.         bits 7-4: modifier (0001 single, 0011 multiple)
  717.         bits 3-0: type
  718.             0000 byte offset
  719.             0010 word segment
  720.             0011 16-bit far pointer (DWORD)
  721.             0101 16-bit offset
  722.             0110 32-bit far pointer (PWORD)
  723.             0111 32-bit offset
  724.             1000 near call or jump, WORD/DWORD based on seg attrib
  725.  01h    BYTE    linear executable fixup type (see #0714)
  726. ---if single type---
  727.  02h    WORD    offset within page
  728.  04h    relocation information
  729.     ---internal fixup---
  730.     BYTE    object number
  731.     ---external,ordinal---
  732.     BYTE    one-based module number in Import Module table
  733.     BYTE/WORD ordinal number
  734.     WORD/DWORD value to add (only present if modifier bit 4 set)
  735.     ---external,name---
  736.     BYTE    one-based module number in Import Module table
  737.     WORD    offset in Import Procedure names
  738.     WORD/DWORD value to add (only present if modifier bit 4 set)
  739. ---if multiple type---
  740.  02h    BYTE    number of items
  741.  03h    var    relocation info as for "single" type (see above)
  742.       N WORDs    offsets of items to relocate
  743.  
  744. Format of old Phar Lap .EXP file header:
  745. Offset    Size    Description    (Table 0716)
  746.  00h  2 BYTEs    "MP" (4Dh 50h) signature
  747.  02h    WORD    remainder of image size / page size (page size = 512h)
  748.  04h    WORD    size of image in pages
  749.  06h    WORD    number of relocation items
  750.  08h    WORD    header size in paragraphs
  751.  0Ah    WORD    minimum number of extra 4K pages to be allocated at the end
  752.           of program, when it is loaded
  753.  0Ch    WORD    maximum number of extra 4K pages to be allocated at the end
  754.           of program, when it is loaded
  755.  0Eh    DWORD    initial ESP
  756.  12h    WORD    word checksum of file
  757.  14h    DWORD    initial EIP
  758.  18h    WORD    offset of first relocation item
  759.  1Ah    WORD    overlay number
  760.  1Ch    WORD    ??? (wants to be 1)
  761.  
  762. Format of new Phar Lap .EXP file header:
  763. Offset    Size    Description    (Table 0717)
  764.  00h  2 BYTEs    signature ("P2" for 286 .EXP executable, "P3" for 386 .EXP)
  765.  02h    WORD    level (01h flat-model file, 02h multisegmented file)
  766.  04h    WORD    header size
  767.  06h    DWORD    file size in bytes
  768.  0Ah    WORD    checksum
  769.  0Ch    DWORD    offset of run-time parameters within file
  770.  10h    DWORD    size of run-time parameters in bytes
  771.  14h    DWORD    offset of relocation table within file
  772.  18h    DWORD    size of relocation table in bytes
  773.  1Ch    DWORD    offset of segment information table within file
  774.  20h    DWORD    size of segment information table in bytes
  775.  24h    WORD    size of segment information table entry in bytes
  776.  26h    DWORD    offset of load image within file
  777.  2Ah    DWORD    size of load image on disk
  778.  2Eh    DWORD    offset of symbol table within file
  779.  32h    DWORD    size of symbol table in bytes
  780.  36h    DWORD    offset of GDT within load image
  781.  3Ah    DWORD    size of GDT in bytes
  782.  3Eh    DWORD    offset of LDT within load image
  783.  42h    DWORD    size of LDT in bytes
  784.  46h    DWORD    offset of IDT within load image
  785.  4Ah    DWORD    size of IDT in bytes
  786.  4Eh    DWORD    offset of TSS within load image
  787.  52h    DWORD    size of TSS in bytes
  788.  56h    DWORD    minimum number of extra bytes to be allocated at end of program
  789.         (level 1 executables only)
  790.  5Ah    DWORD    maximum number of extra bytes to be allocated at end of program
  791.         (level 1 executables only)
  792.  5Eh    DWORD    base load offset (level 1 executables only)
  793.  62h    DWORD    initial ESP
  794.  66h    WORD    initial SS
  795.  68h    DWORD    initial EIP
  796.  6Ch    WORD    initial CS
  797.  6Eh    WORD    initial LDT
  798.  70h    WORD    initial TSS
  799.  72h    WORD    flags
  800.         bit 0: load image is packed
  801.         bit 1: 32-bit checksum is present
  802.         bits 4-2: type of relocation table
  803.  74h    DWORD    memory requirements for load image
  804.  78h    DWORD    32-bit checksum (optional)
  805.  7Ch    DWORD    size of stack segment in bytes
  806.  80h 256 BYTEs    reserved (0)
  807.  
  808. Format of Phar Lap segment information table entry:
  809. Offset    Size    Description    (Table 0718)
  810.  00h    WORD    selector number
  811.  02h    WORD    flags
  812.  04h    DWORD    base offset of selector
  813.  08h    DWORD    minimum number of extra bytes to be allocated to the segment
  814.  
  815. Format of 386|DOS-Extender run-time parameters:
  816. Offset    Size    Description    (Table 0719)
  817.  00h  2 BYTEs    signature "DX" (44h 58h)
  818.  02h    WORD    minimum number of real-mode params to leave free at run time
  819.  04h    WORD    maximum number of real-mode params to leave free at run time
  820.  06h    WORD    minimum interrupt buffer size in KB
  821.  08h    WORD    maximum interrupt buffer size in KB
  822.  0Ah    WORD    number of interrupt stacks
  823.  0Ch    WORD    size in KB of each interrupt stack
  824.  0Eh    DWORD    offset of byte past end of real-mode code and data
  825.  12h    WORD    size in KB of call buffers
  826.  14h    WORD    flags
  827.         bit 0: file is virtual memory manager
  828.         bit 1: file is a debugger
  829.  16h    WORD    unprivileged flag (if nonzero, executes at ring 1, 2, or 3)
  830.  18h 104 BYTEs    reserved (0)
  831.  
  832. Format of Phar Lap repeat block header:
  833. Offset    Size    Description    (Table 0720)
  834.  00h    WORD    byte count
  835.  02h    BYTE    repeat string length
  836.  
  837. Format of Borland debugging information header (following load image):
  838. Offset    Size    Description    (Table 0721)
  839.  00h    WORD    signature 52FBh
  840.  02h    WORD    version ID
  841.  04h    DWORD    size of name pool in bytes
  842.  08h    WORD    number of names in namem pool
  843.  0Ah    WORD    number of type entries
  844.  0Ch    WORD    number of structure members
  845.  0Eh    WORD    number of symbols
  846.  10h    WORD    number of global symbols
  847.  12h    WORD    number of modules
  848.  14h    WORD    number of locals (optional)
  849.  16h    WORD    number of scopes in table
  850.  18h    WORD    number of line-number entries
  851.  1Ah    WORD    number of include files
  852.  1Ch    WORD    number of segment records
  853.  1Eh    WORD    number of segment/file correlations
  854.  20h    DWORD    size of load image after removing uninitialized data and debug
  855.           information
  856.  24h    DWORD    debugger hook; pointer into debugged program whose meaning
  857.           depends on program flags
  858.  28h    BYTE    program flags
  859.         bit 0: case-sensitive link
  860.         bit 1: pascal overlay program
  861.  29h    WORD    no longer used
  862.  2Bh    WORD    size of data pool in bytes
  863.  2Dh    BYTE    padding
  864.  2Eh    WORD    size of following header extension (currently 00h, 10h, or 20h)
  865.  30h    WORD    number of classes
  866.  32h    WORD    number of parents
  867.  34h    WORD    number of global classes (currently unused)
  868.  36h    WORD    number of overloads (currently unused)
  869.  38h    WORD    number of scope classes
  870.  3Ah    WORD    number of module classes
  871.  3Ch    WORD    number of coverage offsets
  872.  3Eh    DWORD    offset relative to symbol base of name pool
  873.  42h    WORD    number of browser information records
  874.  44h    WORD    number of optimized symbol records
  875.  46h    WORD    debugging flags
  876.  48h  8 BYTEs    padding
  877. Note:    additional information on the Borland debugging info may be found in
  878.       Borland's Open Architecture Handbook
  879. --------U-214B-------------------------------
  880. INT 21 - ELRES v1.0 only - INSTALLATION CHECK
  881.     AH = 4Bh
  882.     DS:DX = 0000h:0000h
  883. Return: ES:BX -> ELRES history structure (see #0501 at AH=2Bh/CX=454Ch)
  884.     DX = DABEh (signature, DAve BEnnett)
  885. Program: ELRES is an MS-DOS return code (errorlevel) recorder by David H.
  886.       Bennett
  887. SeeAlso: AH=2Bh/CX=454Ch
  888. --------v-214B04-----------------------------
  889. INT 21 - VIRUS - "MG", "699"/"Thirteen Minutes" - INSTALLATION CHECK
  890.     AX = 4B04h
  891. Return: CF clear if "MG" resident
  892.     AX = 044Bh if "699"/"Thirteen Minutes" resident
  893. SeeAlso: AX=4243h,AH=4Ah/BX=FFFFh,AX=4B21h
  894. --------D-214B05-----------------------------
  895. INT 21 - DOS 5+ - SET EXECUTION STATE
  896.     AX = 4B05h
  897.     DS:DX -> execution state structure (see #0722)
  898. Return: CF clear if successful
  899.         AX = 0000h
  900.     CF set on error
  901.         AX = error code (see #0770 at AH=59h)
  902. Note:    used by programs which intercept AX=4B00h to prepare new programs for
  903.       execution (including setting the DOS version number).     No DOS, BIOS
  904.       or other software interrupt may be called after return from this call
  905.       before commencement of the child process.  If DOS is running in the
  906.       HMA, A20 is turned off on return from this call.
  907. SeeAlso: AH=4Bh
  908.  
  909. Format of execution state structure:
  910. Offset    Size    Description    (Table 0722)
  911.  00h    WORD    reserved (00h)
  912.  02h    WORD    type flags
  913.         bit 0: program is an .EXE
  914.         bit 1: program is an overlay
  915.  04h    DWORD    pointer to ASCIZ name of program file
  916.  08h    WORD    PSP segment of new program
  917.  0Ah    DWORD    starting CS:IP of new program
  918.  0Eh    DWORD    program size including PSP
  919. --------v-214B20-----------------------------
  920. INT 21 - VIRUS - "Holocaust"/"Telefonica" - ???
  921.     AX = 4B20h
  922. SeeAlso: AX=4B04h,AX=4B21h
  923. --------v-214B21-----------------------------
  924. INT 21 C - VIRUS - "Holocaust"/"Telefonica" - ???
  925.     AX = 4B21h
  926. Note:    called at completion of virus installation
  927. SeeAlso: AX=4B04h,AX=4B20h,AX=4B25h
  928. --------v-214B25-----------------------------
  929. INT 21 - VIRUS - "1063"/"Mono" - INSTALLATION CHECK
  930.     AX = 4B25h
  931. Return: DI = 1234h if resident
  932. SeeAlso: AX=4B21h,AX=4B40h
  933. --------v-214B40-----------------------------
  934. INT 21 - VIRUS - "Plastique"/"AntiCad" - INSTALLATION CHECK
  935.     AX = 4B40h
  936. Return: AX = 5678h if resident
  937. SeeAlso: AX=4B25h,AX=4B41h,AX=4B4Ah
  938. --------v-214B41-----------------------------
  939. INT 21 - VIRUS - "Plastique"/"AntiCad" - ???
  940.     AX = 4B41h
  941.     ???
  942. Return: ???
  943. SeeAlso: AX=4B40h
  944. --------v-214B4A-----------------------------
  945. INT 21 - VIRUS - "Jabberwocky" - INSTALLATION CHECK
  946.     AX = 4B4Ah
  947. Return: AL = 57h if resident
  948. SeeAlso: AX=4B40h,AX=4B4Bh
  949. --------v-214B4B-----------------------------
  950. INT 21 - VIRUS - "Horse-2" - INSTALLATION CHECK
  951.     AX = 4B4Bh
  952. Return: CF clear if resident
  953. SeeAlso: AX=4B4Ah,AX=4B4Dh
  954. --------v-214B4D-----------------------------
  955. INT 21 - VIRUS - "Murphy-2", "Patricia"/"Smack" - INSTALLATION CHECK
  956.     AX = 4B4Dh
  957. Return: CF clear if resident
  958. SeeAlso: AX=4B4Ah,AX=4B50h
  959. --------v-214B50-----------------------------
  960. INT 21 - VIRUS - "Plastique-2576"/"AntiCad-2576" - INSTALLATION CHECK
  961.     AX = 4B50h
  962. Return: AX = 1234h if resident
  963. SeeAlso: AX=4B4Dh,AX=4B53h,AX=4B60h
  964. --------v-214B53-----------------------------
  965. INT 21 - VIRUS - "Horse" - INSTALLATION CHECK
  966.     AX = 4B53h
  967. Return: CF clear if resident
  968. SeeAlso: AX=4B50h,AX=4B55h
  969. --------v-214B55-----------------------------
  970. INT 21 - VIRUS - "Sparse" - INSTALLATION CHECK
  971.     AX = 4B55h
  972. Return: AX = 1231h if resident
  973. SeeAlso: AX=4B53h,AX=4B59h
  974. --------v-214B59-----------------------------
  975. INT 21 - VIRUS - "Murphy-1", "Murphy-4" - INSTALLATION CHECK
  976.     AX = 4B59h
  977. Return: CF clear if resident
  978. SeeAlso: AX=4B50h,AX=4B5Eh
  979. --------v-214B5E-----------------------------
  980. INT 21 - VIRUS - "Brothers" - INSTALLATION CHECK
  981.     AX = 4B5Eh
  982. Return: CF clear if resident
  983. SeeAlso: AX=4B59h,AX=4B87h
  984. --------v-214B60-----------------------------
  985. INT 21 - VIRUS - "Plastique-2576"/"AntiCad-2576" - ???
  986.     AX = 4B60h
  987.     ???
  988. Return: ???
  989. SeeAlso: AX=4B50h
  990. --------v-214B87-----------------------------
  991. INT 21 - VIRUS - "Shirley" - INSTALLATION CHECK
  992.     AX = 4B87h
  993. Return: AX = 6663h if resident
  994. SeeAlso: AX=4B5Eh,AX=4B95h
  995. --------v-214B95-----------------------------
  996. INT 21 - VIRUS - "Zherkov-1882" - INSTALLATION CHECK
  997.     AX = 4B95h
  998. Return: AX = 1973h if resident
  999. SeeAlso: AX=4B87h,AX=4BA7h
  1000. --------v-214BA7-----------------------------
  1001. INT 21 - VIRUS - "1876"/"Dash-em" - INSTALLATION CHECK
  1002.     AX = 4BA7h
  1003. Return: AX = B459h if resident
  1004. SeeAlso: AX=4B95h,AX=4BAAh
  1005. --------v-214BAA-----------------------------
  1006. INT 21 - VIRUS - "Nomenklatura" - INSTALLATION CHECK
  1007.     AX = 4BAAh
  1008. Return: CF clear if resident
  1009. SeeAlso: AX=4BA7h,AX=4BAFh
  1010. --------v-214BAF-----------------------------
  1011. INT 21 - VIRUS - "948"/"Screenplus1", "Magnitogorsk" - INSTALLATION CHECK
  1012.     AX = 4BAFh
  1013. Return: AL = AFh if "Magnitogorsk" resident
  1014.     AL = FAh if "948"/"Screenplus1" resident
  1015. SeeAlso: AX=4BAAh,AX=4BDDh
  1016. --------v-214BDD-----------------------------
  1017. INT 21 - VIRUS - "Lozinsky"/"Zherkov" - INSTALLATION CHECK
  1018.     AX = 4BDDh
  1019. Return: AX = 1234h
  1020. SeeAlso: AX=4BAFh,AX=4BFEh
  1021. --------v-214BEE-----------------------------
  1022. INT 21 - F-DRIVER.SYS v1.14+ - GRAB INT 21
  1023.     AX = 4BEEh
  1024. Return: AX = status
  1025.         1234h grab was successful
  1026.         2345h failed (INT 21 grabbed previously)
  1027. Program: F-DRIVER.SYS is part of the shareware F-PROT virus/trojan protection
  1028.       package by Fridrik Skulason
  1029. Note:    when called the first time, this function moves the INT 21 monitoring
  1030.       code from its original location in the INT 21 chain to be the first
  1031.       thing called by INT 21.  This is the mechanism used by F-NET.
  1032. SeeAlso: INT 2F/AX=4653h
  1033. --------k-214BF0-----------------------------
  1034. INT 21 - DIET v1.10+ (Overlay Mode) - INSTALLATION CHECK
  1035.     AX = 4BF0h
  1036. Return: CF clear if installed
  1037.         AX = 899Dh
  1038. Program: DIET is an executable-compression program by Teddy Matsumoto
  1039. SeeAlso: AX=37D0h,AX=4BF1h
  1040. --------k-214BF1-----------------------------
  1041. INT 21 - DIET v1.10+ (Overlay Mode) - EXPAND PROGRAM???
  1042.     AX = 4BF1h
  1043. Return: ???
  1044. SeeAlso: AX=37D0h,AX=4BF0h
  1045. --------v-214BFE-----------------------------
  1046. INT 21 - VIRUS - "Hitchcock", "Dark Avenger-1028", "1193" - INSTALLATION CHECK
  1047.     AX = 4BFEh
  1048. Return: AX = 1234h if "Hitchcock" resident
  1049.     AX = ABCDh if "1193"/"Copyright" resident
  1050.     DI = 55BBh if "Dark Avenger-1028" resident
  1051. SeeAlso: AX=4BDDh,AX=4BFFh"Justice"
  1052. --------v-214BFF-----------------------------
  1053. INT 21 - VIRUS - "USSR-707", "Justice", "Europe 92" - INSTALLATION CHECK
  1054.     AX = 4BFFh
  1055. Return: BL = FFh if "USSR-707" resident
  1056.     DI = 55AAh if "Justice" resident
  1057.     CF clear if "Europe 92" resident
  1058. SeeAlso: AX=4BFEh,AX=4BFFh"Cascade",AX=5252h
  1059. --------v-214BFFSI0000-----------------------
  1060. INT 21 - VIRUS - "Cascade" - INSTALLATION CHECK
  1061.     AX = 4BFFh
  1062.     SI = 0000h
  1063.     DI = 0000h
  1064. Return: DI = 55AAh if installed
  1065. SeeAlso: AX=4BFFh"Justice",AX=5252h
  1066. --------D-214C-------------------------------
  1067. INT 21 - DOS 2+ - "EXIT" - TERMINATE WITH RETURN CODE
  1068.     AH = 4Ch
  1069.     AL = return code
  1070. Return: never returns
  1071. Notes:    unless the process is its own parent (see #0498 at AH=26h, offset 16h
  1072.       in PSP), all open files are closed and all memory belonging to the
  1073.       process is freed
  1074.     all network file locks should be removed before calling this function
  1075. SeeAlso: AH=00h,AH=26h,AH=4Bh,AH=4Dh,INT 15/AH=12h/BH=02h,INT 20,INT 22
  1076. SeeAlso: INT 60/DI=0601h
  1077. ----------214C57-----------------------------
  1078. INT 21 - Headroom - ???
  1079.     AX = 4C57h
  1080.     DS:DX -> target address
  1081. Note:    jumps to target address instead of terminating program
  1082. SeeAlso: AX=5758h
  1083. --------D-214D-------------------------------
  1084. INT 21 - DOS 2+ - GET RETURN CODE (ERRORLEVEL)
  1085.     AH = 4Dh
  1086. Return: AH = termination type
  1087.         00h normal (INT 20,INT 21/AH=00h, or INT 21/AH=4Ch)
  1088.         01h control-C abort
  1089.         02h critical error abort
  1090.         03h terminate and stay resident (INT 21/AH=31h or INT 27)
  1091.     AL = return code
  1092. Notes:    the word in which DOS stores the return code is cleared after being
  1093.       read by this function, so the return code can only be retrieved once
  1094.     COMMAND.COM stores the return code of the last external command it
  1095.       executed as ERRORLEVEL
  1096.     this call should not be used if the child was started with AX=4B04h;
  1097.       use AH=8Ah instead
  1098.     the following sequence will close a Virtual DOS Machine under OS/2 2.0:
  1099.       MOV    AH,4Dh
  1100.       INT    21h
  1101.       HLT
  1102.       DB    02h,0FDh
  1103.       This sequence is the only way to close a specific VDM which was
  1104.       booted from floppy or a disk image.
  1105. SeeAlso: AH=4Bh,AH=4Ch,AH=8Ah
  1106. --------D-214E-------------------------------
  1107. INT 21 - DOS 2+ - "FINDFIRST" - FIND FIRST MATCHING FILE
  1108.     AH = 4Eh
  1109.     AL = special flag for use by APPEND (see note below)
  1110.     CX = file attribute mask (see #0535 at AX=4301h) (bits 0 and 5 ignored)
  1111.         0088h (Novell DOS 7) find first deleted file
  1112.     DS:DX -> ASCIZ file specification (may include path and wildcards)
  1113. Return: CF clear if successful
  1114.         [DTA] = FindFirst data block (see #0723)
  1115.     CF set on error
  1116.         AX = error code (02h,03h,12h) (see #0770 at AH=59h)
  1117. Notes:    for search attributes other than 08h, all files with at MOST the
  1118.       specified combination of hidden, system, and directory attributes
  1119.       will be returned.  Under DOS 2.x, searching for attribute 08h
  1120.       (volume label) will also return normal files, while under DOS 3+
  1121.       only the volume label (if any) will be returned.
  1122.     this call also returns successfully if given the name of a character
  1123.       device without wildcards.  DOS 2.x returns attribute 00h, size 0,
  1124.       and the current date and time.  DOS 3+ returns attribute 40h and the
  1125.       current date and time.
  1126.     immediately after an INT 2F/AX=B711h (APPEND return found name), the
  1127.       name at DS:DX will be overwritten; if AL=00h on entry, the actual
  1128.       found pathname will be stored, otherwise, the actual found path
  1129.       will be prepended to the original filespec without a path.
  1130.     under LANtastic, this call may be used to obtain a list of a server's
  1131.       shared resources by searching for "\\SERVER\*.*"; a list of printer
  1132.       resources may be obtained by searching for "\\SERVER\@*.*"
  1133.     under the FlashTek X-32 DOS extender, the filespec pointer is in DS:EDX
  1134. BUGS:    under DOS 3.x and 4.x, the second and subsequent calls to this function
  1135.       with a character device name (no wildcards) and search attributes
  1136.       which include the volume-label bit (08h) will fail unless there is
  1137.       an intervening DOS call which implicitly or explicity performs a
  1138.       directory search without the volume-label bit.  Such implicit
  1139.       searches are performed by CREATE (AH=3Ch), OPEN (AH=3Dh), UNLINK
  1140.       (AH=41h), and RENAME (AH=56h)
  1141.     DR-DOS 3.41 and 5.0 return the Directory attribute for the volume label
  1142. SeeAlso: AH=11h,AH=4Fh,AX=4301h,AH=71h,INT 2F/AX=111Bh,INT 2F/AX=B711h
  1143.  
  1144. Format of FindFirst data block:
  1145. Offset    Size    Description    (Table 0723)
  1146. ---PC-DOS 3.10, PC-DOS 4.01, MS-DOS 3.2/3.3/5.0---
  1147.  00h    BYTE    drive letter (bits 0-6), remote if bit 7 set
  1148.  01h 11 BYTEs    search template
  1149.  0Ch    BYTE    search attributes
  1150. ---DOS 2.x (and some DOS 3.x???)---
  1151.  00h    BYTE    search attributes
  1152.  01h    BYTE    drive letter
  1153.  02h 11 BYTEs    search template
  1154. ---WILDUNIX.COM---
  1155.  00h 12 BYTEs    15-character wildcard search pattern and drive letter (packed)
  1156.  0Ch    BYTE    search attributes
  1157. ---DOS 2.x and most 3.x---
  1158.  0Dh    WORD    entry count within directory
  1159.  0Fh    DWORD    pointer to DTA???
  1160.  13h    WORD    cluster number of start of parent directory
  1161. ---PC-DOS 4.01, MS-DOS 3.2/3.3/5.0---
  1162.  0Dh    WORD    entry count within directory
  1163.  0Fh    WORD    cluster number of start of parent directory
  1164.  11h  4 BYTEs    reserved
  1165. ---all versions, documented fields---
  1166.  15h    BYTE    attribute of file found
  1167.  16h    WORD    file time (see #0761 at AX=5700h)
  1168.  18h    WORD    file date (see #0762 at AX=5700h)
  1169.  1Ah    DWORD    file size
  1170.  1Eh 13 BYTEs    ASCIZ filename+extension
  1171. --------f-214E-------------------------------
  1172. INT 21 - WILDUNIX.COM internal - INSTALLATION CHECK
  1173.     AH = 4Eh
  1174.     DS:DX = 0000h:0000h
  1175. Return: AH = 99h if installed
  1176. Program: WILDUNIX.COM is a resident Unix-style wildcard expander by Steve
  1177.       Hosgood and Terry Barnaby
  1178. --------D-214F-------------------------------
  1179. INT 21 - DOS 2+ - "FINDNEXT" - FIND NEXT MATCHING FILE
  1180.     AH = 4Fh
  1181.     [DTA] = data block from previous FindFirst or FindNext call
  1182. Return: CF clear if successful
  1183.     CF set on error
  1184.         AX = error code (12h) (see #0770 at AH=59h)
  1185. Note:    under Novell DOS 7, if the FindFirst call (AH=4Eh) had CX=0088h, then
  1186.       the next matching deleted file will be returned
  1187. BUG:    DR-DOS 3.41 and 5.0 return the Directory attribute for the volume label
  1188. SeeAlso: AH=12h,AH=4Eh,AH=71h,AH=72h
  1189. --------D-2150-------------------------------
  1190. INT 21 - DOS 2+ internal - SET CURRENT PROCESS ID (SET PSP ADDRESS)
  1191.     AH = 50h
  1192.     BX = segment of PSP for new process
  1193. Notes:    DOS uses the current PSP address to determine which processes own files
  1194.       and memory; it corresponds to process identifiers used by other OSs
  1195.     under DOS 2.x, this function cannot be invoked inside an INT 28h
  1196.       handler without setting the Critical Error flag
  1197.     under MS-DOS 3+ and DR-DOS 3.41+, this function does not use any of
  1198.       the DOS-internal stacks and may thus be called at any time, even
  1199.       during another INT 21h call
  1200.     some Microsoft applications such as Quick C 2.51 use segments of 0000h
  1201.       and FFFFh and direct access to the SDA (see #0777 at AX=5D06h) to
  1202.       test whether they are running under MS-DOS rather than a compatible
  1203.       OS; although one should only call this function with valid PSP
  1204.       addresses, any program hooking it should be prepared to handle
  1205.       invalid addresses
  1206.     this function is supported by the OS/2 compatibility box
  1207.     this call was undocumented prior to the release of DOS 5.0
  1208. SeeAlso: AH=26h,AH=51h,AH=62h
  1209. --------D-2151-------------------------------
  1210. INT 21 - DOS 2+ internal - GET CURRENT PROCESS ID (GET PSP ADDRESS)
  1211.     AH = 51h
  1212. Return: BX = segment of PSP for current process
  1213. Notes:    DOS uses the current PSP address to determine which processes own files
  1214.       and memory; it corresponds to process identifiers used by other OSs
  1215.     under DOS 2.x, this function cannot be invoked inside an INT 28h
  1216.       handler without setting the Critical Error flag
  1217.     under DOS 3+, this function does not use any of the DOS-internal stacks
  1218.       and may thus be called at any time, even during another INT 21h call
  1219.     supported by OS/2 compatibility box
  1220.     identical to the documented AH=62h
  1221.     this call was undocumented prior to the release of DOS 5.0
  1222. SeeAlso: AH=26h,AH=50h,AH=62h
  1223. --------D-2152-------------------------------
  1224. INT 21 U - DOS 2+ internal - "SYSVARS" - GET LIST OF LISTS
  1225.     AH = 52h
  1226. Return: ES:BX -> DOS list of lists (see #0724)
  1227. Notes:    partially supported by OS/2 v1.1 compatibility box (however, most
  1228.       pointers are FFFFh:FFFFh, LASTDRIVE is FFh, and the NUL header "next"
  1229.       pointer is FFFFh:FFFFh).
  1230.     partially supported by the Windows NT DOS box; contains only a
  1231.       rudimentary Current Directory Structure (see #0741)
  1232.     on return, ES points at the DOS data segment (see also INT 2F/AX=1203h)
  1233.     Quarterdeck's suggested check for the use of its DOSDATA.SYS or
  1234.       DOS-UP.SYS is to test whether the list-of-lists segment is greater
  1235.       than the segment of the first memory block; a better check for
  1236.       DOS-UP.SYS is INT 21/AX=2B01h/CX=444Dh
  1237. SeeAlso: INT 2F/AX=1203h
  1238.  
  1239. Format of List of Lists:
  1240. Offset    Size    Description    (Table 0724)
  1241.  -24    WORD    (DOS 3.1+) contents of CX from INT 21/AX=5E01h
  1242.  -22    WORD    (DOS ???+) LRU counter for FCB caching
  1243.  -20    WORD    (DOS ???+) LRU counter for FCB opens
  1244.  -18    DWORD    (DOS ???+) address of OEM function handler (see INT 21/AH=F8h)
  1245.             FFFFh:FFFFh if not installed or not available
  1246.  -14    WORD    (DOS ???+) offset in DOS CS of code to return from INT 21 call
  1247.  -12    WORD    (DOS 3.1+) sharing retry count (see AX=440Bh)
  1248.  -10    WORD    (DOS 3.1+) sharing retry delay (see AX=440Bh)
  1249.  -8    DWORD    (DOS 3+) pointer to current disk buffer
  1250.  -4    WORD    (DOS 3+) pointer in DOS data segment of unread CON input
  1251.         when CON is read via a handle, DOS reads an entire line,
  1252.           and returns the requested portion, buffering the rest
  1253.           for the next read.  0000h indicates no unread input
  1254.  -2    WORD    segment of first memory control block
  1255.  00h    DWORD    pointer to first Drive Parameter Block (see #0514 at AH=32h)
  1256.  04h    DWORD    -> first System File Table (see #0735,#0736,#0737,#0738)
  1257.  08h    DWORD    pointer to active CLOCK$ device's header (most recently loaded
  1258.           driver with CLOCK bit set)
  1259.  0Ch    DWORD    pointer to active CON device's header (most recently loaded
  1260.           driver with STDIN bit set)
  1261. ---DOS 2.x---
  1262.  10h    BYTE    number of logical drives in system
  1263.  11h    WORD    maximum bytes/block of any block device
  1264.  13h    DWORD    pointer to first disk buffer (see #0746,#0747)
  1265.  17h 18 BYTEs    actual NUL device driver header (not a pointer!)
  1266.         NUL is always the first device on DOS's linked list of device
  1267.           drivers. (see #0744)
  1268. ---DOS 3.0---
  1269.  10h    BYTE    number of block devices
  1270.  11h    WORD    maximum bytes/block of any block device
  1271.  13h    DWORD    pointer to first disk buffer (see #0747,#0749)
  1272.  17h    DWORD    pointer to array of current directory structures (see #0739)
  1273.  1Bh    BYTE    value of LASTDRIVE command in CONFIG.SYS (default 5)
  1274.  1Ch    DWORD    pointer to STRING= workspace area
  1275.  20h    WORD    size of STRING area (the x in STRING=x from CONFIG.SYS)
  1276.  22h    DWORD    pointer to FCB table
  1277.  26h    WORD    the y in FCBS=x,y from CONFIG.SYS
  1278.  28h 18 BYTEs    actual NUL device driver header (not a pointer!)
  1279.         NUL is always the first device on DOS's linked list of device
  1280.           drivers. (see #0744)
  1281. ---DOS 3.1-3.3---
  1282.  10h    WORD    maximum bytes per sector of any block device
  1283.  12h    DWORD    pointer to first disk buffer in buffer chain (see #0747)
  1284.  16h    DWORD    pointer to array of current directory structures (see #0739)
  1285.  1Ah    DWORD    pointer to system FCB tables (see #0736,#0737,#0738)
  1286.  1Eh    WORD    number of protected FCBs (the y in the CONFIG.SYS FCBS=x,y)
  1287.  20h    BYTE    number of block devices installed
  1288.  21h    BYTE    number of available drive letters (largest of 5, installed
  1289.           block devices, and CONFIG.SYS LASTDRIVE=).  Also size of
  1290.           current directory structure array.
  1291.  22h 18 BYTEs    actual NUL device driver header (not a pointer!)
  1292.         NUL is always the first device on DOS's linked list of device
  1293.           drivers. (see #0744)
  1294.  34h    BYTE    number of JOIN'ed drives
  1295. ---DOS 4.x---
  1296.  10h    WORD    maximum bytes per sector of any block device
  1297.  12h    DWORD    pointer to disk buffer info record (see #0749,#0750)
  1298.         Note: although the initialization code in IO.SYS uses this
  1299.           pointer, MSDOS.SYS does not, instead using the hardcoded    
  1300.           address of the info record
  1301.  16h    DWORD    pointer to array of current directory structures
  1302.         (see #0739,#0740)
  1303.  1Ah    DWORD    pointer to system FCB tables (see #0736,#0737,#0738)
  1304.  1Eh    WORD    number of protected FCBs (the y in the CONFIG.SYS FCBS=x,y)
  1305.         (always 00h for DOS 5.0)
  1306.  20h    BYTE    number of block devices installed
  1307.  21h    BYTE    number of available drive letters (largest of 5, installed
  1308.           block devices, and CONFIG.SYS LASTDRIVE=).  Also size of
  1309.           current directory structure array.
  1310.  22h 18 BYTEs    actual NUL device driver header (not a pointer!)
  1311.         NUL is always the first device on DOS's linked list of device
  1312.           drivers. (see #0744)
  1313.  34h    BYTE    number of JOIN'ed drives
  1314.  35h    WORD    pointer within IBMDOS code segment to list of special program
  1315.           names (see #0759)
  1316.         (always 0000h for DOS 5.0)
  1317.  37h    DWORD    pointer to FAR routine for resident IFS utility functions
  1318.         (see #0756)
  1319.         may be called by any IFS driver which does not wish to
  1320.           service functions 20h or 24h-28h itself
  1321.  3Bh    DWORD    pointer to chain of IFS (installable file system) drivers
  1322.  3Fh    WORD    the x in BUFFERS x,y (rounded up to multiple of 30 if in EMS)
  1323.  41h    WORD    number of lookahead buffers (the y in BUFFERS x,y)
  1324.  43h    BYTE    boot drive (1=A:)
  1325.  44h    BYTE    flag: 01h to use DWORD moves (80386+), 00h otherwise
  1326.  45h    WORD    extended memory size in KB
  1327. ---DOS 5.0-6.0---
  1328.  10h 39 BYTEs    as for DOS 4.x (see above)
  1329.  37h    DWORD    pointer to SETVER program list or 0000h:0000h
  1330.  3Bh    WORD    (DOS=HIGH) offset in DOS CS of function to fix A20 control
  1331.           when executing special .COM format
  1332.  3Dh    WORD    PSP of most-recently EXECed program if DOS in HMA, 0000h if low
  1333.         used for maintaining count of INT 21 calls which disable A20
  1334.           on return
  1335.  3Fh  8 BYTEs    as for DOS 4.x (see above)
  1336. ---Windows NT DOS Box---
  1337.  10h  6 BYTEs    ???
  1338.  16h    DWORD    pointer to array of current directory structures (see #0741)
  1339.  1Ah  6 BYTEs    ???
  1340.  20h    BYTE    number of block devices installed
  1341.  21h    BYTE    number of local drive letters (= installed block devices)
  1342.         Also size of current directory structure array.
  1343.  22h 18 BYTEs    actual NUL device driver header (not a pointer!)
  1344.         NUL is always the first device on DOS's linked list of device
  1345.           drivers. (see #0744)
  1346.  
  1347. (Table 0725)
  1348. Values for special flag PSP segments:
  1349.  0000h    free
  1350.  0006h    DR-DOS XMS UMB
  1351.  0007h    DR-DOS excluded upper memory ("hole")
  1352.  0008h    belongs to DOS
  1353.  FFFAh    386MAX UMB control block (see #0589 at AX=4402h"386MAX")
  1354.  FFFDh    386MAX locked-out memory
  1355.  FFFEh    386MAX UMB (immediately follows its control block)
  1356.  FFFFh    386MAX 6.01 device driver
  1357.  
  1358. Format of DOS memory control block (see also below):
  1359. Offset    Size    Description    (Table 0726)
  1360.  00h    BYTE    block type: 5Ah if last block in chain, otherwise 4Dh
  1361.  01h    WORD    PSP segment of owner or special flag value (see #0725)
  1362.  03h    WORD    size of memory block in paragraphs
  1363.  05h  3 BYTEs    unused by MS-DOS
  1364.         (386MAX) if locked-out block, region start/prev region end
  1365. ---DOS 2.x,3.x---
  1366.  08h  8 BYTEs    unused
  1367. ---DOS 4+ ---
  1368.  08h  8 BYTEs    ASCII program name if PSP memory block or DR-DOS UMB,
  1369.           else garbage
  1370.         null-terminated if less than 8 characters
  1371. Notes:    the next MCB is at segment (current + size + 1)
  1372.     under DOS 3.1+, the first memory block is the DOS data segment,
  1373.       containing installable drivers, buffers, etc.     Under DOS 4+ it is
  1374.       divided into subsegments, each with its own memory control block
  1375.       (see #0729), the first of which is at offset 0000h.
  1376.     for DOS 5+, blocks owned by DOS may have either "SC" or "SD" in bytes
  1377.       08h and 09h.    "SC" is system code or locked-out inter-UMB memory,
  1378.       "SD" is system data, device drivers, etc.
  1379.     Some versions of DR-DOS use only seven characters of the program name,
  1380.       placing a NUL in the eighth byte.
  1381. SeeAlso: #0727,#0728,#0729
  1382.  
  1383. Format of MS-DOS 5+ UMB control block:
  1384. Offset    Size    Description    (Table 0727)
  1385.  00h    BYTE    type: 5Ah if last block in chain, 4Dh otherwise
  1386.  01h    WORD    first available paragraph in UMB if control block at start
  1387.           of UMB, 000Ah if control block at end of UMB
  1388.  03h    WORD    length in paragraphs of following UMB or locked-out region
  1389.  05h  3 BYTEs    unused
  1390.  08h  8 BYTEs    block type name: "UMB" if start block, "SM" if end block in UMB
  1391.  
  1392. Format of STARLITE (General Software's Embedded DOS) memory control block:
  1393. Offset    Size    Description    (Table 0728)
  1394.  00h    BYTE    block type: 5Ah if last block in chain, otherwise 4Dh
  1395.  01h    WORD    PSP segment of owner, 0000h if free, 0008h if belongs to DOS
  1396.  03h    WORD    size of memory block in paragraphs
  1397.  05h    BYTE    unused
  1398.  06h    WORD    segment address of next memory control block (0000h if last)
  1399.  08h    WORD    segment address of previous memory control block or 0000h
  1400.  0Ah  6 BYTEs    reserved
  1401.  
  1402. Format of DOS 4+ data segment subsegment control blocks:
  1403. Offset    Size    Description    (Table 0729)
  1404.  00h    BYTE    subsegment type (blocks typically appear in this order)
  1405.         "D"  device driver
  1406.         "E"  device driver appendage
  1407.         "I"  IFS (Installable File System) driver
  1408.         "F"  FILES=  control block storage area (for FILES>5)
  1409.         "X"  FCBS=   control block storage area, if present
  1410.         "C"  BUFFERS EMS workspace area (if BUFFERS /X option used)
  1411.         "B"  BUFFERS=  storage area
  1412.         "L"  LASTDRIVE=     current directory structure array storage area
  1413.         "S"  STACKS=  code and data area, if present (see #0730,#0731)
  1414.         "T"  INSTALL= transient code
  1415.  01h    WORD    paragraph of subsegment start (usually the next paragraph)
  1416.  03h    WORD    size of subsegment in paragraphs
  1417.  05h  3 BYTEs    unused
  1418.  08h  8 BYTEs    for types "D" and "I", base name of file from which the driver
  1419.           was loaded (unused for other types)
  1420.  
  1421. Format of data at start of STACKS code segment (if present):
  1422. Offset    Size    Description    (Table 0730)
  1423.  00h    WORD    ???
  1424.  02h    WORD    number of stacks (the x in STACKS=x,y)
  1425.  04h    WORD    size of stack control block array (should be 8*x)
  1426.  06h    WORD    size of each stack (the y in STACKS=x,y)
  1427.  08h    DWORD    pointer to STACKS data segment
  1428.  0Ch    WORD    offset in STACKS data segment of stack control block array
  1429.  0Eh    WORD    offset in STACKS data segment of last element of that array
  1430.  10h    WORD    offset in STACKS data segment of the entry in that array for
  1431.           the next stack to be allocated (initially same as value in
  1432.           0Eh and works its way down in steps of 8 to the value in
  1433.           0Ch as hardware interrupts pre-empt each other)
  1434. Note:    the STACKS code segment data may, if present, be located as follows:
  1435.     DOS 3.2:    The code segment data is at a paragraph boundary fairly early
  1436.           in the IBMBIO segment (seen at 0070:0190h)
  1437.     DOS 3.3:    The code segment is at a paragraph boundary in the DOS data
  1438.           segment, which may be determined by inspecting the segment
  1439.           pointers of the vectors for those of interrupts 02h, 08h-0Eh,
  1440.           70h, 72-77h which have not been redirected by device drivers
  1441.           or TSRs.
  1442.     DOS 4+    Identified by sub-segment control block type "S" within the DOS
  1443.           data segment.
  1444. SeeAlso: INT B4"STACKMAN"
  1445.  
  1446. Format of array elements in STACKS data segment:
  1447. Offset    Size    Description    (Table 0731)
  1448.  00h    BYTE    status: 00h=free, 01h=in use, 03h=corrupted by overflow of
  1449.           higher stack.
  1450.  01h    BYTE    not used
  1451.  02h    WORD    previous SP
  1452.  04h    WORD    previous SS
  1453.  06h    WORD    ptr to word at top of stack (new value for SP). The word at the
  1454.           top of the stack is preset to point back to this control
  1455.           block.
  1456.  
  1457. Format of SHARE.EXE hooks (DOS 3.1-6.00):
  1458. Offset    Size    Description    (Table 0732)
  1459. (offsets from first system file table--pointed at by ListOfLists+04h)
  1460. -3Ch    DWORD    pointer to FAR routine for ???
  1461.         Note: not called by MS-DOS 3.3, set to 0000h:0000h by
  1462.             SHARE 3.3+
  1463. -38h    DWORD    pointer to FAR routine called on opening file
  1464.         on call, internal DOS location points at filename
  1465.           (see #0777 at AX=5D06h)
  1466.         Return: CF clear if successful
  1467.             CF set on error
  1468.                 AX = DOS error code (24h) (see #0770 at AH=59h)
  1469.         Note: SHARE directly accesses DOS-internal data to get name of
  1470.             file just opened
  1471. -34h    DWORD    pointer to FAR routine called on closing file
  1472.         ES:DI -> system file table
  1473.         Note: does something to every Record Lock Record for file
  1474. -30h    DWORD    pointer to FAR routine to close all files for given computer
  1475.         (called by AX=5D03h)
  1476. -2Ch    DWORD    pointer to FAR routine to close all files for given process
  1477.         (called by AX=5D04h)
  1478. -28h    DWORD    pointer to FAR routine to close file by name
  1479.         (called by AX=5D02h)
  1480.         DS:SI -> DOS parameter list (see #0776 at AX=5D00h)
  1481.            DPL's DS:DX -> name of file to close
  1482.         Return: CF clear if successful
  1483.             CF set on error
  1484.                 AX = DOS error code (03h) (see #0770 at AH=59h)
  1485. -24h    DWORD    pointer to FAR routine to lock region of file
  1486.         call with BX = file handle
  1487.               ---DOS 3.x---
  1488.               CX:DX = starting offset
  1489.               SI:AX = size
  1490.               ---DOS 4+---
  1491.               DS:DX -> lock range
  1492.                     DWORD start offset
  1493.                     DWORD size in bytes
  1494.         Return: CF set on error
  1495.                 AL = DOS error code (21h) (see #0770 at AH=59h)
  1496.         Note: not called if file is marked as remote
  1497. -20h    DWORD    pointer to FAR routine to unlock region of file
  1498.         call with BX = file handle
  1499.               ---DOS 3.x---
  1500.               CX:DX = starting offset
  1501.               SI:AX = size
  1502.               ---DOS 4+---
  1503.               DS:DX -> lock range
  1504.                     DWORD start offset
  1505.                     DWORD size in bytes
  1506.         Return: CF set on error
  1507.                 AL = DOS error code (21h) (see #0770 at AH=59h)
  1508.         Note: not called if file is marked as remote
  1509. -1Ch    DWORD    pointer to FAR routine to check if file region is locked
  1510.         call with ES:DI -> system file table entry for file
  1511.             CX = length of region from current position in file
  1512.         Return: CF set if any portion of region locked
  1513.                 AX = 0021h
  1514. -18h    DWORD    pointer to FAR routine to get open file list entry
  1515.         (called by AX=5D05h)
  1516.         call with DS:SI -> DOS parameter list (see #0776 at AX=5D00h)
  1517.             DPL's BX = index of sharing record
  1518.             DPL's CX = index of SFT in SFT chain of sharing rec
  1519.         Return: CF set on error or not loaded
  1520.                 AX = DOS error code (12h) (see #0770 at AH=59h)
  1521.             CF clear if successful
  1522.                 ES:DI -> filename
  1523.                 CX = number of locks owned by specified SFT
  1524.                 BX = network machine number
  1525.                 DX destroyed
  1526. -14h    DWORD    pointer to FAR routine for updating FCB from SFT???
  1527.         call with DS:SI -> unopened FCB
  1528.               ES:DI -> system file table entry
  1529.         Return: BL = C0h???
  1530.         Note: copies following fields from SFT to FCB:
  1531.            starting cluster of file      0Bh     1Ah
  1532.            sharing record offset      33h     1Ch
  1533.            file attribute          04h     1Eh
  1534. -10h    DWORD    pointer to FAR routine to get first cluster of FCB file ???
  1535.         call with ES:DI -> system file table entry
  1536.               DS:SI -> FCB
  1537.         Return: CF set if SFT closed or sharing record offsets
  1538.                 mismatched
  1539.             CF clear if successful
  1540.                 BX = starting cluster number from FCB
  1541. -0Ch    DWORD    pointer to FAR routine to close file if duplicate for process
  1542.         DS:SI -> system file table
  1543.         Return: AX = number of handle in JFT which already uses SFT
  1544.         Note: called during open/create of a file
  1545.         Note: if SFT was opened with inheritance enabled and sharing
  1546.             mode 111, does something to all other SFTs owned by
  1547.             same process which have the same file open mode and
  1548.             sharing record
  1549. -08h    DWORD    pointer to FAR routine for closing file
  1550.         Note: closes various handles referring to file most-recently
  1551.             opened
  1552. -04h    DWORD    pointer to FAR routine to update directory info in related SFT
  1553.           entries
  1554.         call with ES:DI -> system file table entry for file (see #0737)
  1555.               AX = subfunction (apply to each related SFT)
  1556.                 00h: update time stamp (offset 0Dh) and date
  1557.                      stamp (offset 0Fh)
  1558.                 01h: update file size (offset 11h) and starting
  1559.                      cluster (offset 0Bh).  Sets last-accessed
  1560.                      cluster fields to start of file if file
  1561.                      never accessed
  1562.                 02h: as function 01h, but last-accessed fields
  1563.                      always changed
  1564.                 03h: do both functions 00h and 02h
  1565.         Note: follows ptr at offset 2Bh in system file table entries
  1566.         Note: NOP if opened with no-inherit or via FCB
  1567. Notes:    most of the above hooks (except -04h, -14h, -18h, and -3Ch) assume
  1568.       either that SS=DOS DS or SS=DS=DOS DS and directly access
  1569.       DOS-internal data
  1570.     sharing hooks are not supported by DR-DOS 5-6; they appear to be
  1571.       supported by Novell DOS 7, with a segment of 0000h indicating the
  1572.       DOS data segment
  1573. SeeAlso: #0733,#0734
  1574.  
  1575. Format of sharing record:
  1576. Offset    Size    Description    (Table 0733)
  1577.  00h    BYTE    flag
  1578.         00h free block
  1579.         01h allocated block
  1580.         FFh end marker
  1581.  01h    WORD    size of block
  1582.  03h    BYTE    checksum of pathname (including NUL)
  1583.         if sum of ASCII values is N, checksum is (N/256 + N%256)
  1584.  04h    WORD    offset in SHARE's DS of first Record Lock Record (see #0734)
  1585.  06h    DWORD    pointer to start of system file table chain for file
  1586.  0Ah    WORD    unique sequence number
  1587.  0Ch    var    ASCIZ full pathname
  1588. Note:    not supported by DR-DOS SHARE 1.1 and 2.0; will reportedly be
  1589.       supported by Novell DOS 7
  1590. SeeAlso: #0732,#0734
  1591.  
  1592. Format of SHARE.EXE Record Lock Record:
  1593. Offset    Size    Description    (Table 0734)
  1594.  00h    WORD    offset in SHARE's DS of next lock table in list or 0000h
  1595.  02h    DWORD    offset in file of start of locked region
  1596.  06h    DWORD    offset in file of end of locked region
  1597.  0Ah    DWORD    pointer to System File Table entry for this file
  1598.  0Eh    WORD    PSP segment of lock's owner
  1599. ---DOS 5+ ---
  1600.  10h    WORD    lock type: (00h lock all, 01h lock writes only)
  1601. SeeAlso: #0732,#0733,#0735,#0738
  1602.  
  1603. Format of DOS 2.x system file tables:
  1604. Offset    Size    Description    (Table 0735)
  1605.  00h    DWORD    pointer to next file table (offset FFFFh if last)
  1606.  04h    WORD    number of files in this table
  1607.  06h  28h bytes per file
  1608.     Offset    Size    Description
  1609.      00h    BYTE    number of file handles referring to this file
  1610.      01h    BYTE    file open mode (see #0521 at AH=3Dh)
  1611.      02h    BYTE    file attribute
  1612.      03h    BYTE    drive (0 = character device, 1 = A, 2 = B, etc)
  1613.      04h 11 BYTEs    filename in FCB format (no path,no period,blank-padded)
  1614.      0Fh    WORD    ???
  1615.      11h    WORD    ???
  1616.      13h    DWORD    file size???
  1617.      17h    WORD    file date in packed format (see #0762 at AX=5700h)
  1618.      19h    WORD    file time in packed format (see #0761 at AX=5700h)
  1619.      1Bh    BYTE    device attribute (see #0538 at AX=4400h)
  1620.     ---character device---
  1621.      1Ch    DWORD    pointer to device driver
  1622.     ---block device---
  1623.      1Ch    WORD    starting cluster of file
  1624.      1Eh    WORD    relative cluster in file of last cluster accessed
  1625.     ------
  1626.      20h    WORD    absolute cluster number of current cluster
  1627.      22h    WORD    ???
  1628.      24h    DWORD    current file position???
  1629. SeeAlso: #0736,#0737,#0738
  1630.  
  1631. Format of DOS 3.0 system file tables and FCB tables:
  1632. Offset    Size    Description    (Table 0736)
  1633.  00h    DWORD    pointer to next file table (offset FFFFh if last)
  1634.  04h    WORD    number of files in this table
  1635.  06h  38h bytes per file
  1636.     Offset    Size    Description
  1637.      00h-1Eh as for DOS 3.1+ (see #0737)
  1638.      1Fh    WORD    byte offset of directory entry within sector
  1639.      21h 11 BYTEs    filename in FCB format (no path/period, blank-padded)
  1640.      2Ch    DWORD    (SHARE.EXE) pointer to previous SFT sharing same file
  1641.      30h    WORD    (SHARE.EXE) network machine number which opened file
  1642.             (Windows Enhanced mode DOSMGR uses the virtual machine
  1643.               ID as the machine number; see INT 2F/AX=1683h)
  1644.      32h    WORD    PSP segment of file's owner (first three entries for
  1645.               AUX/CON/PRN contain segment of IO.SYS startup code)
  1646.      34h    WORD    (SHARE.EXE) offset in SHARE code seg of share record
  1647.      36h    WORD    ??? apparently always 0000h
  1648. SeeAlso: #0735,#0737,#0738
  1649.  
  1650. Format of DOS 3.1-3.3x, DR-DOS 5.0-6.0 system file tables and FCB tables:
  1651. Offset    Size    Description    (Table 0737)
  1652.  00h    DWORD    pointer to next file table (offset FFFFh if last)
  1653.  04h    WORD    number of files in this table
  1654.  06h  35h bytes per file
  1655.     Offset    Size    Description
  1656.      00h    WORD    number of file handles referring to this file
  1657.      02h    WORD    file open mode (see #0521 at AH=3Dh)
  1658.             bit 15 set if this file opened via FCB
  1659.      04h    BYTE    file attribute (see #0535 at AX=4301h)
  1660.      05h    WORD    device info word (see #0538 at AX=4400h)
  1661.             bit 15 set if remote file
  1662.             bit 14 set means do not set file date/time on closing
  1663.             bit 12 set means don't inherit on EXEC
  1664.             bits 5-0 drive number for disk files
  1665.      07h    DWORD    pointer to device driver header if character device
  1666.             else pointer to DOS Drive Parameter Block
  1667.               (see #0514 at AH=32h)
  1668.      0Bh    WORD    starting cluster of file
  1669.      0Dh    WORD    file time in packed format (see #0761 at AX=5700h)
  1670.             not used for character devices in DR-DOS
  1671.      0Fh    WORD    file date in packed format (see #0762 at AX=5700h)
  1672.             not used for character devices in DR-DOS
  1673.      11h    DWORD    file size
  1674.     ---system file table---
  1675.      15h    DWORD    current offset in file (may be larger than size of
  1676.               file; INT 21/AH=42h does not check new position)
  1677.     ---FCB table---
  1678.      15h    WORD    counter for last I/O to FCB
  1679.      17h    WORD    counter for last open of FCB
  1680.             (these are separate to determine the times of the
  1681.               latest I/O and open)
  1682.     ---
  1683.      19h    WORD    relative cluster within file of last cluster accessed
  1684.      1Bh    WORD    absolute cluster number of last cluster accessed
  1685.             0000h if file never read or written???
  1686.      1Dh    WORD    number of sector containing directory entry
  1687.      1Fh    BYTE    number of dir entry within sector (byte offset/32)
  1688.      20h 11 BYTEs    filename in FCB format (no path/period, blank-padded)
  1689.      2Bh    DWORD    (SHARE.EXE) pointer to previous SFT sharing same file
  1690.      2Fh    WORD    (SHARE.EXE) network machine number which opened file
  1691.             (Windows Enhanced mode DOSMGR uses the virtual machine
  1692.               ID as the machine number; see INT 2F/AX=1683h)
  1693.      31h    WORD    PSP segment of file's owner (see #0498 at AH=26h)
  1694.               (first three entries for AUX/CON/PRN contain segment
  1695.               of IO.SYS startup code)
  1696.      33h    WORD    offset within SHARE.EXE code segment of
  1697.               sharing record (see #0733)  0000h = none
  1698. SeeAlso: #0735,#0736,#0738
  1699.  
  1700. Format of DOS 4.0-6.0 system file tables and FCB tables:
  1701. Offset    Size    Description    (Table 0738)
  1702.  00h    DWORD    pointer to next file table (offset FFFFh if last)
  1703.  04h    WORD    number of files in this table
  1704.  06h  3Bh bytes per file
  1705.     Offset    Size    Description
  1706.      00h    WORD    number of file handles referring to this file
  1707.             FFFFh if in use but not referenced
  1708.      02h    WORD    file open mode (see #0521 at AH=3Dh)
  1709.             bit 15 set if this file opened via FCB
  1710.      04h    BYTE    file attribute (see #0535 at AX=4301h)
  1711.      05h    WORD    device info word (see also #0538 at AX=4400h)
  1712.             bit 15 set if remote file
  1713.             bit 14 set means do not set file date/time on closing
  1714.             bit 13 set if named pipe
  1715.             bit 12 set if no inherit
  1716.             bit 11 set if network spooler
  1717.             bit 7  set if device, clear if file (only if local)
  1718.             bits 6-0 as for AX=4400h
  1719.      07h    DWORD    pointer to device driver header if character device
  1720.             else pointer to DOS Drive Parameter Block
  1721.               (see #0514 at AH=32h) or REDIR data
  1722.      0Bh    WORD    starting cluster of file (local files only)
  1723.      0Dh    WORD    file time in packed format (see #0761)
  1724.      0Fh    WORD    file date in packed format (see #0762)
  1725.      11h    DWORD    file size
  1726.      15h    DWORD    current offset in file (SFT)
  1727.             LRU counters (FCB table, two WORDs)
  1728.     ---local file---
  1729.      19h    WORD    relative cluster within file of last cluster accessed
  1730.      1Bh    DWORD    number of sector containing directory entry
  1731.      1Fh    BYTE    number of dir entry within sector (byte offset/32)
  1732.     ---network redirector---
  1733.      19h    DWORD    pointer to REDIRIFS record
  1734.      1Dh  3 BYTEs    ???
  1735.     ------
  1736.      20h 11 BYTEs    filename in FCB format (no path/period, blank-padded)
  1737.      2Bh    DWORD    (SHARE.EXE) pointer to previous SFT sharing same file
  1738.      2Fh    WORD    (SHARE.EXE) network machine number which opened file
  1739.             (Windows Enhanced mode DOSMGR uses the virtual machine
  1740.               ID as the machine number; see INT 2F/AX=1683h)
  1741.      31h    WORD    PSP segment of file's owner (see #0498 at AH=26h)
  1742.               (first three entries for AUX/CON/PRN contain segment
  1743.               of IO.SYS startup code)
  1744.      33h    WORD    offset within SHARE.EXE code segment of
  1745.             sharing record (see #0692)  0000h = none
  1746.      35h    WORD    (local) absolute cluster number of last clustr accessed
  1747.             (redirector) ???
  1748.      37h    DWORD    pointer to IFS driver for file, 0000000h if native DOS
  1749. Note:    the OS/2 2.0 DOS Boot Session does not properly fill in the filename
  1750.       field due to incomplete support for SFTs; the OS/2 2.0 DOS Window
  1751.       does not appear to support SFTs at all
  1752. SeeAlso: #0735,#0736,#0737
  1753.  
  1754. Format of current directory structure (CDS) (array, LASTDRIVE entries):
  1755. Offset    Size    Description    (Table 0739)
  1756.  00h 67 BYTEs    ASCIZ path in form X:\PATH (local) or \\MACH\PATH (network)
  1757.  43h    WORD    drive attributes (see also note below and AX=5F07h)
  1758.         bit 15: uses network redirector     \ invalid if 00, installable
  1759.         bit 14: physical drive         / file system if 11
  1760.         bit 13: JOIN'ed      \ path above is true path that would be
  1761.         bit 12: SUBST'ed  / needed if not under SUBST or JOIN
  1762.         bit  7: remote drive hidden from redirector's assign-list and
  1763.               exempt from network connection make/break commands;
  1764.               set for CD-ROM drives
  1765.  45h    DWORD    pointer to Drive Parameter Block for drive
  1766.           (see #0514 at AH=32h)
  1767. ---local drives---
  1768.  49h    WORD    starting cluster of current directory
  1769.         0000h = root, FFFFh = never accessed
  1770.  4Bh    WORD    ??? seems to be FFFFh always
  1771.  4Dh    WORD    ??? seems to be FFFFh always
  1772. ---network drives---
  1773.  49h    DWORD    pointer to redirector or REDIRIFS record, or FFFFh:FFFFh
  1774.         (DOS 4 only) available for use by IFS driver
  1775.  4Dh    WORD    stored user data from INT 21/AX=5F03h
  1776. ------
  1777.  4Fh    WORD    offset in current directory path of backslash corresponding to
  1778.           root directory for drive
  1779.         this value specifies how many characters to hide from the
  1780.           "CHDIR" and "GETDIR" calls; normally set to 2 to hide the
  1781.           drive letter and colon, SUBST, JOIN, and networks change it
  1782.           so that only the appropriate portion of the true path is
  1783.           visible to the user
  1784. ---DOS 4+ ---
  1785.  51h    BYTE    (DOS 4 only, remote drives) device type
  1786.         04h network drive
  1787.  52h    DWORD    pointer to IFS driver (DOS 4) or redirector block (DOS 5+) for
  1788.           this drive, 00000000h if native DOS
  1789.  56h    WORD    available for use by IFS driver
  1790. Notes:    the path for invalid drives is normally set to X:\, but may be empty
  1791.       after JOIN x: /D in DR-DOS 5.0 or NET USE x: /D in older LAN versions
  1792.     normally, only one of bits 13&12 may be set together with bit 14, but
  1793.       DR-DOS 5.0 uses other combinations for bits 15-12: 0111 JOIN,
  1794.       0001 SUBST, 0101 ASSIGN (see #0740)
  1795. SeeAlso: #0740
  1796.  
  1797. Format of DR-DOS 5.0-6.0 current directory structure entry (array):
  1798. Offset    Size    Description    (Table 0740)
  1799.  00h 67 BYTEs    ASCIZ pathname of actual root directory for this logical drive
  1800.  43h    WORD    drive attributes
  1801.         1000h SUBSTed drive
  1802.         3000h??? JOINed drive
  1803.         4000h physical drive
  1804.         5000h ASSIGNed drive
  1805.         7000h JOINed drive
  1806.         8000h network drive
  1807.  45h    BYTE    physical drive number (0=A:) if this logical drive is valid
  1808.  46h    BYTE    ??? apparently flags for JOIN and ASSIGN
  1809.  47h    WORD    cluster number of start of parent directory (0000h = root)
  1810.  49h    WORD    entry number of current directory in parent directory
  1811.  4Bh    WORD    cluster number of start of current directory
  1812.  4Dh    WORD    used for media change detection (details not available)
  1813.  4Fh    WORD    cluster number of SUBST/JOIN "root" directory
  1814.         0000h if physical root directory
  1815. SeeAlso: #0739
  1816.  
  1817. Format of Windows NT Current Directory Structure (CDS) (array):
  1818. Offset    Size    Description    (Table 0741)
  1819.  00h 67 BYTEs    ASCIZ path in form X:\ (does not show either current directory
  1820.           or network path)
  1821.  43h  4 BYTEs    ???
  1822. Note:    the WinNT CDS contains only as many entries as there are local drives,
  1823.       not LASTDRIVE entries.
  1824.  
  1825. Bitfields for device attributes (character device):
  1826. Bit(s)    Description    (Table 0742)
  1827.  15    set (indicates character device)
  1828.  14    IOCTL supported (see AH=44h)
  1829.  13    (DOS 3+) output until busy supported
  1830.  12    reserved
  1831.  11    (DOS 3+) OPEN/CLOSE/RemMedia calls supported
  1832.  10-8    reserved
  1833.  7    (DOS 5+) Generic IOCTL check call supported (driver command 19h)
  1834.     (see AX=4410h,AX=4411h)
  1835.  6    (DOS 3.2+) Generic IOCTL call supported (driver command 13h)
  1836.     (see AX=440Ch,AX=440Dh)
  1837.  5    reserved
  1838.  4    device is special (use INT 29 "fast console output")
  1839.  3    device is CLOCK$ (all reads/writes use transfer record described
  1840.       below)
  1841.  2    device is NUL
  1842.  1    device is standard output
  1843.  0    device is standard input
  1844. Note:    for European MS-DOS 4.0, bit 11 also indicates that bits 8-6 contain a
  1845.       version code (000 = DOS 3.0,3.1; 001 = DOS 3.2;
  1846.       010 = European DOS 4.0)
  1847. SeeAlso: #0743,#0744
  1848.  
  1849. Bitfields for device attributes (block device):
  1850. Bit(s)    Description    (Table 0743)
  1851.  15    clear (indicates block device)
  1852.  14    IOCTL supported
  1853.  13    non-IBM format
  1854.  12    network device (device is remote)
  1855.  11    (DOS 3+) OPEN/CLOSE/RemMedia calls supported
  1856.  10    reserved
  1857.  9    direct I/O not allowed??? (set by DOS 3.3 DRIVER.SYS for "new" drives)
  1858.  8    ??? set by DOS 3.3 DRIVER.SYS for "new" drives
  1859.  7    (DOS 5+) Generic IOCTL check call supported (driver command 19h)
  1860.     (see AX=4410h,AX=4411h)
  1861.  6    (DOS 3.2+) Generic IOCTL call supported (driver command 13h)
  1862.     implies support for commands 17h and 18h
  1863.       (see AX=440Ch,AX=440Dh,AX=440Eh,AX=440Fh)
  1864.  5-2    reserved
  1865.  1    driver supports 32-bit sector addressing (DOS 3.31+)
  1866.  0     reserved
  1867. Note:    for European MS-DOS 4.0, bit 11 also indicates that bits 8-6 contain a
  1868.       version code (000 = DOS 3.0,3.1; 001 = DOS 3.2;
  1869.       010 = European DOS 4.0)
  1870. SeeAlso: #0742,#0744
  1871.  
  1872. Format of DOS device driver header:
  1873. Offset    Size    Description    (Table 0744)
  1874.  00h    DWORD    pointer to next driver, offset=FFFFh if last driver
  1875.  04h    WORD    device attributes (see #0742,#0743)
  1876.  06h    WORD    device strategy entry point
  1877.         call with ES:BX -> request header (see INT 2F/AX=0802h)
  1878.  08h    WORD    device interrupt entry point
  1879. ---character device---
  1880.  0Ah  8 BYTEs    blank-padded character device name
  1881. ---block device---
  1882.  0Ah    BYTE    number of subunits (drives) supported by driver
  1883.  0Bh  7 BYTEs    unused
  1884. ---
  1885.  12h    WORD    (CD-ROM driver) reserved, must be 0000h
  1886.         appears to be another device chain
  1887.  14h    BYTE    (CD-ROM driver) drive letter (must initially be 00h)
  1888.  15h    BYTE    (CD-ROM driver) number of units
  1889.  16h  6 BYTEs    (CD-ROM driver) signature 'MSCDnn' where 'nn' is version
  1890.             (currently '00')
  1891.  
  1892. Format of CLOCK$ transfer record:
  1893. Offset    Size    Description    (Table 0745)
  1894.  00h    WORD    number of days since 1-Jan-1980
  1895.  02h    BYTE    minutes
  1896.  03h    BYTE    hours
  1897.  04h    BYTE    hundredths of second
  1898.  05h    BYTE    seconds
  1899.  
  1900. Format of DOS 2.x disk buffer:
  1901. Offset    Size    Description    (Table 0746)
  1902.  00h    DWORD    pointer to next disk buffer, offset = FFFFh if last
  1903.         least-recently used buffer is first in chain
  1904.  04h    BYTE    drive (0=A, 1=B, etc), FFh if not in use
  1905.  05h  3 BYTEs    unused??? (seems always to be 00h 00h 01h)
  1906.  08h    WORD    logical sector number
  1907.  0Ah    BYTE    number of copies to write (1 for non-FAT sectors)
  1908.  0Bh    BYTE    sector offset between copies if multiple copies to be written
  1909.  0Ch    DWORD    pointer to DOS Drive Parameter Block (see #0514 at AH=32h)
  1910.  10h        buffered data
  1911. SeeAlso: #0747,#0749,#0750,#0752
  1912.  
  1913. Format of DOS 3.x disk buffer:
  1914. Offset    Size    Description    (Table 0747)
  1915.  00h    DWORD    pointer to next disk buffer, offset = FFFFh if last
  1916.         least-recently used buffer is first in chain
  1917.  04h    BYTE    drive (0=A,1=B, etc), FFh if not in use
  1918.  05h    BYTE    buffer flags (see #0748)
  1919.  06h    WORD    logical sector number
  1920.  08h    BYTE    number of copies to write (1 for non-FAT sectors)
  1921.  09h    BYTE    sector offset between copies if multiple copies to be written
  1922.  0Ah    DWORD    pointer to DOS Drive Parameter Block (see #0514 at AH=32h)
  1923.  0Eh    WORD    unused??? (almost always 0)
  1924.  10h        buffered data
  1925. SeeAlso: #0746,#0749,#0750,#0752
  1926.  
  1927. Bitfields for DOS 3.x disk buffer flags:
  1928. Bit(s)    Description    (Table 0748)
  1929.  7    ???
  1930.  6    buffer dirty
  1931.  5    buffer has been referenced
  1932.  4    ???
  1933.  3    sector in data area
  1934.  2    sector in a directory, either root or subdirectory
  1935.  1    sector in FAT
  1936.  0    boot sector??? (guess)
  1937. SeeAlso: #0753
  1938.  
  1939. Format of DOS 4.00 (pre UR 25066) disk buffer info:
  1940. Offset    Size    Description    (Table 0749)
  1941.  00h    DWORD    pointer to array of disk buffer hash chain heads (see #0751)
  1942.  04h    WORD    number of disk buffer hash chains (referred to as NDBCH below)
  1943.  06h    DWORD    pointer to lookahead buffer, zero if not present
  1944.  0Ah    WORD    number of lookahead sectors, else zero (the y in BUFFERS=x,y)
  1945.  0Ch    BYTE    00h if buffers in EMS (/X), FFh if not
  1946.  0Dh    WORD    EMS handle for buffers, zero if not in EMS
  1947.  0Fh    WORD    EMS physical page number used for buffers (usually 255)
  1948.  11h    WORD    ??? seems always to be 0001h
  1949.  13h    WORD    segment of EMS physical page frame
  1950.  15h    WORD    ??? seems always to be zero
  1951.  17h  4 WORDs    EMS partial page mapping information???
  1952. SeeAlso: #0746,#0747,#0750,#0754
  1953.  
  1954. Format of DOS 4.01 (from UR 25066 Corrctive Services Disk on) disk buffer info:
  1955. Offset    Size    Description    (Table 0750)
  1956.  00h    DWORD    pointer to array of disk buffer hash chain heads (see #0751)
  1957.  04h    WORD    number of disk buffer hash chains (referred to as NDBCH below)
  1958.  06h    DWORD    pointer to lookahead buffer, zero if not present
  1959.  0Ah    WORD    number of lookahead sectors, else zero (the y in BUFFERS=x,y)
  1960.  0Ch    BYTE    01h, possibly to distinguish from pre-UR 25066 format
  1961.  0Dh    WORD    ??? EMS segment for BUFFERS (only with /XD)
  1962.  0Fh    WORD    ??? EMS physical page number of EMS seg above (only with /XD)
  1963.  11h    WORD    ??? EMS segment for ??? (only with /XD)
  1964.  13h    WORD    ??? EMS physical page number of above (only with /XD)
  1965.  15h    BYTE    ??? number of EMS page frames present (only with /XD)
  1966.  16h    WORD    segment of one-sector workspace buffer allocated in main memory
  1967.           if BUFFERS/XS or /XD options in effect, possibly to avoid DMA
  1968.           into EMS
  1969.  18h    WORD    EMS handle for buffers, zero if not in EMS
  1970.  1Ah    WORD    EMS physical page number used for buffers (usually 255)
  1971.  1Ch    WORD    ??? appears always to be 0001h
  1972.  1Eh    WORD    segment of EMS physical page frame
  1973.  20h    WORD    ??? appears always to be zero
  1974.  22h    BYTE    00h if /XS, 01h if /XD, FFh if BUFFERS not in EMS
  1975. SeeAlso: #0746,#0747,#0749,#0754
  1976.  
  1977. Format of DOS 4.x disk buffer hash chain head (array, one entry per chain):
  1978. Offset    Size    Description    (Table 0751)
  1979.  00h    WORD    EMS logical page number in which chain is resident, -1 if not
  1980.           in EMS
  1981.  02h    DWORD    pointer to least recently used buffer header.  All buffers on
  1982.           this chain are in the same segment.
  1983.  06h    BYTE    number of dirty buffers on this chain
  1984.  07h    BYTE    reserved (00h)
  1985. Notes:    buffered disk sectors are assigned to chain N where N is the sector's
  1986.       address modulo NDBCH,     0 <= N <= NDBCH-1
  1987.     each chain resides completely within one EMS page
  1988.     this structure is in main memory even if buffers are in EMS
  1989.  
  1990. Format of DOS 4.0-6.0 disk buffer:
  1991. Offset    Size    Description    (Table 0752)
  1992.  00h    WORD    forward ptr, offset only, to next least recently used buffer
  1993.  02h    WORD    backward pointer, offset only
  1994.  04h    BYTE    drive (0=A,1=B, etc) if bit 7 clear
  1995.         SFT index if bit 7 set
  1996.         FFh if not in use
  1997.  05h    BYTE    buffer flags (see #0753)
  1998.  06h    DWORD    logical sector number (local buffers only)
  1999.  0Ah    BYTE    number of copies to write
  2000.         for FAT sectors, same as number of FATs
  2001.         for data and directory sectors, usually 1
  2002.  0Bh    WORD    offset in sectors between copies to write for FAT sectors
  2003.  0Dh    DWORD    pointer to DOS Drive Parameter Block (see #0514 at AH=32h)
  2004.  11h    WORD    size of data in buffer if remote buffer (see flags above)
  2005.  13h    BYTE    reserved (padding)
  2006.  14h        buffered data
  2007. Note:    for DOS 4.x, all buffered sectors which have the same hash value
  2008.       (computed as the sum of high and low words of the logical sector
  2009.       number divided by the number of disk buffer chains) are on the same
  2010.       doubly-linked circular chain; for DOS 5+, only a single circular
  2011.       chain exists.
  2012.     the links consist of offset addresses only, the segment being the same
  2013.       for all buffers in the chain.
  2014. SeeAlso: #0746,#0747,#0749
  2015.  
  2016. Bitfields for DOS 4.0-6.0 disk buffer flags:
  2017. Bit(s)    Description    (Table 0753)
  2018.  7    remote buffer
  2019.  6    buffer dirty
  2020.  5    buffer has been referenced (reserved in DOS 5+)
  2021.  4    search data buffer (only valid if remote buffer)
  2022.  3    sector in data area
  2023.  2    sector in a directory, either root or subdirectory
  2024.  1    sector in FAT
  2025.  0    reserved
  2026. SeeAlso: #0748
  2027.  
  2028. Format of DOS 5.0-6.0 disk buffer info:
  2029. Offset    Size    Description    (Table 0754)
  2030.  00h    DWORD    pointer to least-recently-used buffer header (may be in HMA)
  2031.         (see #0752)
  2032.  04h    WORD    number of dirty disk buffers
  2033.  06h    DWORD    pointer to lookahead buffer, zero if not present
  2034.  0Ah    WORD    number of lookahead sectors, else zero (the y in BUFFERS=x,y)
  2035.  0Ch    BYTE    buffer location
  2036.         00h base memory, no workspace buffer
  2037.         01h HMA, workspace buffer in base memory
  2038.  0Dh    DWORD    pointer to one-segment workspace buffer in base memory
  2039.  11h  3 BYTEs    unused
  2040.  14h    WORD    ???
  2041.  16h    BYTE    flag: INT 24 fail while making an I/O status call
  2042.  17h    BYTE    temp storage for user memory allocation strategy during EXEC
  2043.  18h    BYTE    counter: number of INT 21 calls for which A20 is off
  2044.  19h    BYTE    bit flags
  2045.         bit 0: ???
  2046.         bit 1: SWITCHES=/W specified in CONFIG.SYS (don't load
  2047.             WINA20.SYS when MS Windows 3.0 starts)
  2048.         bit 2: in EXEC state (INT 21/AX=4B05h)
  2049.  1Ah    WORD    offset of unpack code start (used only during INT 21/AX=4B05h)
  2050.  1Ch    BYTE    bit 0 set iff UMB MCB chain linked to normal MCB chain
  2051.  1Dh    WORD    minimum paragraphs of memory required by program being EXECed
  2052.  1Fh    WORD    segment of first MCB in upper memory blocks or FFFFh if DOS
  2053.           memory chain in base 640K only (first UMB MCB usually at
  2054.           9FFFh, locking out video memory with a DOS-owned memory
  2055.           block)
  2056.  21h    WORD    paragraph from which to start scanning during memory allocation
  2057. SeeAlso: #0749,#0750
  2058.  
  2059. Format of IFS driver list:
  2060. Offset    Size    Description    (Table 0755)
  2061.  00h    DWORD    pointer to next driver header
  2062.  04h  8 BYTEs    IFS driver name (blank padded), as used by FILESYS command
  2063.  0Ch  4 BYTEs    ???
  2064.  10h    DWORD    pointer to IFS utility function entry point (see #0756)
  2065.         call with ES:BX -> IFS request (see #0757)
  2066.  14h    WORD    offset in header's segment of driver entry point
  2067.     ???
  2068. SeeAlso: #0756,#0757
  2069.  
  2070. (Table 0756)
  2071. Call IFS utility function entry point with:
  2072.     AH = 20h miscellaneous functions
  2073.         AL = 00h get date
  2074.         Return: CX = year
  2075.             DH = month
  2076.             DL = day
  2077.         AL = 01h get process ID and computer ID
  2078.         Return: BX = current PSP segment
  2079.             DX = active network machine number
  2080.         AL = 05h get file system info
  2081.         ES:DI -> 16-byte info buffer
  2082.         Return: buffer filled
  2083.             Offset    Size    Description
  2084.              00h  2 BYTEs    unused
  2085.              02h    WORD    number of SFTs (actually counts only
  2086.                     the first two file table arrays)
  2087.              04h    WORD    number of FCB table entries
  2088.              06h    WORD    number of proctected FCBs
  2089.              08h  6 BYTEs    unused
  2090.              0Eh    WORD    largest sector size supported
  2091.         AL = 06h get machine name
  2092.         ES:DI -> 18-byte buffer for name
  2093.         Return: buffer filled with name starting at offset 02h
  2094.         AL = 08h get sharing retry count
  2095.         Return: BX = sharing retry count
  2096.         AL = other
  2097.         Return: CF set
  2098.     AH = 21h get redirection state
  2099.         BH = type (03h disk, 04h printer)
  2100.         Return: BH = state (00h off, 01h on)
  2101.     AH = 22h ??? some sort of time calculation
  2102.         AL = 00h ???
  2103.             nonzero ???
  2104.     AH = 23h ??? some sort of time calculation
  2105.     AH = 24h compare filenames
  2106.         DS:SI -> first ASCIZ filename
  2107.         ES:DI -> second ASCIZ filename
  2108.         Return: ZF set if files are same ignoring case and / vs \
  2109.     AH = 25h normalize filename
  2110.         DS:SI -> ASCIZ filename
  2111.         ES:DI -> buffer for result
  2112.         Return: filename uppercased, forward slashes changed to backslashes
  2113.     AH = 26h get DOS stack
  2114.         Return: DS:SI -> top of stack
  2115.             CX = size of stack in bytes
  2116.     AH = 27h increment InDOS flag
  2117.     AH = 28h decrement InDOS flag
  2118. Note:    IFS drivers which do not wish to implement functions 20h or 24h-28h may
  2119.       pass them on to the default handler pointed at by [LoL+37h]
  2120. SeeAlso: #0755,#0757
  2121.  
  2122. Format of IFS request block:
  2123. Offset    Size    Description    (Table 0757)
  2124.  00h    WORD    total size in bytes of request
  2125.  02h    BYTE    class of request
  2126.         02h ???
  2127.         03h redirection
  2128.         04h ???
  2129.         05h file access
  2130.         06h convert error code to string
  2131.         07h ???
  2132.  03h    WORD    returned DOS error code
  2133.  05h    BYTE    IFS driver exit status
  2134.         00h success
  2135.         01h ???
  2136.         02h ???
  2137.         03h ???
  2138.         04h ???
  2139.         FFh internal failure
  2140.  06h 16 BYTEs    ???
  2141. ---request class 02h---
  2142.  16h    BYTE    function code
  2143.         04h ???
  2144.  17h    BYTE    unused???
  2145.  18h    DWORD    pointer to ???
  2146.  1Ch    DWORD    pointer to ???
  2147.  20h  2 BYTEs    ???
  2148. ---request class 03h---
  2149.  16h    BYTE    function code
  2150.  17h    BYTE    ???
  2151.  18h    DWORD    pointer to ???
  2152.  1Ch    DWORD    pointer to ???
  2153.  22h    WORD    returned ???
  2154.  24h    WORD    returned ???
  2155.  26h    WORD    returned ???
  2156.  28h    BYTE    returned ???
  2157.  29h    BYTE    unused???
  2158. ---request class 04h---
  2159.  16h    DWORD    pointer to ???
  2160.  1Ah    DWORD    pointer to ???
  2161. ---request class 05h---
  2162.  16h    BYTE    function code
  2163.         01h flush disk buffers
  2164.         02h get disk space
  2165.         03h MKDIR
  2166.         04h RMDIR
  2167.         05h CHDIR
  2168.         06h delete file
  2169.         07h rename file
  2170.         08h search directory
  2171.         09h file open/create
  2172.         0Ah LSEEK
  2173.         0Bh read from file
  2174.         0Ch write to file
  2175.         0Dh lock region of file
  2176.         0Eh commit/close file
  2177.         0Fh get/set file attributes
  2178.         10h printer control
  2179.         11h ???
  2180.         12h process termination
  2181.         13h ???
  2182.     ---class 05h function 01h---
  2183.      17h  7 BYTEs    ???
  2184.      1Eh    DWORD    pointer to ???
  2185.      22h  4 BYTEs    ???
  2186.      26h    BYTE    ???
  2187.      27h    BYTE    ???
  2188.     ---class 05h function 02h---
  2189.      17h  7 BYTEs    ???
  2190.      1Eh    DWORD    pointer to ???
  2191.      22h  4 BYTEs    ???
  2192.      26h    WORD    returned total clusters
  2193.      28h    WORD    returned sectors per cluster
  2194.      2Ah    WORD    returned bytes per sector
  2195.      2Ch    WORD    returned available clusters
  2196.      2Eh    BYTE    returned ???
  2197.      2Fh    BYTE    ???
  2198.     ---class 05h functions 03h,04h,05h---
  2199.      17h  7 BYTEs    ???
  2200.      1Eh    DWORD    pointer to ???
  2201.      22h  4 BYTEs    ???
  2202.      26h    DWORD    pointer to directory name
  2203.     ---class 05h function 06h---
  2204.      17h  7 BYTEs    ???
  2205.      1Eh    DWORD    pointer to ???
  2206.      22h  4 BYTEs    ???
  2207.      26h    WORD    attribute mask
  2208.      28h    DWORD    pointer to filename
  2209.     ---class 05h function 07h---
  2210.      17h  7 BYTEs    ???
  2211.      1Eh    DWORD    pointer to ???
  2212.      22h  4 BYTEs    ???
  2213.      26h    WORD    attribute mask
  2214.      28h    DWORD    pointer to source filespec
  2215.      2Ch    DWORD    pointer to destination filespec
  2216.     ---class 05h function 08h---
  2217.      17h  7 BYTEs    ???
  2218.      1Eh    DWORD    pointer to ???
  2219.      22h  4 BYTEs    ???
  2220.      26h    BYTE    00h FINDFIRST
  2221.             01h FINDNEXT
  2222.      28h    DWORD    pointer to FindFirst search data + 01h if FINDNEXT
  2223.      2Ch    WORD    search attribute if FINDFIRST
  2224.      2Eh    DWORD    pointer to filespec if FINDFIRST
  2225.     ---class 05h function 09h---
  2226.      17h  7 BYTEs    ???
  2227.      1Eh    DWORD    pointer to ???
  2228.      22h    DWORD    pointer to IFS open file structure (see #0758)
  2229.      26h    WORD    ???  \ together, specify open vs. create, whether or
  2230.      28h    WORD    ???  / not to truncate
  2231.      2Ah  4 BYTEs    ???
  2232.      2Eh    DWORD    pointer to filename
  2233.      32h  4 BYTEs    ???
  2234.      36h    WORD    file attributes on call
  2235.             returned ???
  2236.      38h    WORD    returned ???
  2237.     ---class 05h function 0Ah---
  2238.      17h  7 BYTEs    ???
  2239.      1Eh    DWORD    pointer to ???
  2240.      22h    DWORD    pointer to IFS open file structure (see #0758)
  2241.      26h    BYTE    seek type (02h = from end)
  2242.      28h    DWORD    offset on call
  2243.             returned new absolute position
  2244.     ---class 05h functions 0Bh,0Ch---
  2245.      17h  7 BYTEs    ???
  2246.      1Eh    DWORD    pointer to ???
  2247.      22h    DWORD    pointer to IFS open file structure (see #0758)
  2248.      28h    WORD    number of bytes to transfer
  2249.             returned bytes actually transferred
  2250.      2Ah    DWORD    transfer address
  2251.     ---class 05h function 0Dh---
  2252.      17h  7 BYTEs    ???
  2253.      1Eh    DWORD    pointer to ???
  2254.      22h    DWORD    pointer to IFS open file structure (see #0758)
  2255.      26h    BYTE    file handle???
  2256.      27h    BYTE    unused???
  2257.      28h    WORD    ???
  2258.      2Ah    WORD    ???
  2259.      2Ch    WORD    ???
  2260.      2Eh    WORD    ???
  2261.     ---class 05h function 0Eh---
  2262.      17h  7 BYTEs    ???
  2263.      1Eh    DWORD    pointer to ???
  2264.      22h    DWORD    pointer to IFS open file structure (see #0758)
  2265.      26h    BYTE    00h commit file
  2266.             01h close file
  2267.      27h    BYTE    unused???
  2268.     ---class 05h function 0Fh---
  2269.      17h  7 BYTEs    ???
  2270.      1Eh    DWORD    pointer to ???
  2271.      22h  4 BYTEs    ???
  2272.      26h    BYTE    02h GET attributes
  2273.             03h PUT attributes
  2274.      27h    BYTE    unused???
  2275.      28h 12 BYTEs    ???
  2276.      34h    WORD    search attributes???
  2277.      36h    DWORD    pointer to filename
  2278.      3Ah    WORD    (GET) returned ???
  2279.      3Ch    WORD    (GET) returned ???
  2280.      3Eh    WORD    (GET) returned ???
  2281.      40h    WORD    (GET) returned ???
  2282.      42h    WORD    (PUT) new attributes
  2283.             (GET) returned attributes
  2284.     ---class 05h function 10h---
  2285.      17h  7 BYTEs    ???
  2286.      1Eh    DWORD    pointer to ???
  2287.      22h    DWORD    pointer to IFS open file structure (see #0758)
  2288.      26h    WORD    ???
  2289.      28h    DWORD    pointer to ???
  2290.      2Ch    WORD    ???
  2291.      2Eh    BYTE    ???
  2292.      2Fh    BYTE    subfunction
  2293.             01h get printer setup
  2294.             03h ???
  2295.             04h ???
  2296.             05h ???
  2297.             06h ???
  2298.             07h ???
  2299.             21h set printer setup
  2300.     ---class 05h function 11h---
  2301.      17h  7 BYTEs    ???
  2302.      1Eh    DWORD    pointer to ???
  2303.      22h    DWORD    pointer to IFS open file structure (see #0758)
  2304.      26h    BYTE    subfunction
  2305.      27h    BYTE    unused???
  2306.      28h    WORD    ???
  2307.      2Ah    WORD    ???
  2308.      2Ch    WORD    ???
  2309.      2Eh    BYTE    ???
  2310.      2Fh    BYTE    ???
  2311.     ---class 05h function 12h---
  2312.      17h 15 BYTEs    unused???
  2313.      26h    WORD    PSP segment
  2314.      28h    BYTE    type of process termination
  2315.      29h    BYTE    unused???
  2316.     ---class 05h function 13h---
  2317.      17h 15 BYTEs    unused???
  2318.      26h    WORD    PSP segment
  2319. ---request class 06h---
  2320.  16h    DWORD    returned pointer to string corresponding to error code at 03h
  2321.  1Ah    BYTE    returned ???
  2322.  1Bh    BYTE    unused
  2323. ---request class 07h---
  2324.  16h    DWORD    pointer to IFS open file structure (see #0758)
  2325.  1Ah    BYTE    ???
  2326.  1Bh    BYTE    unused???
  2327. SeeAlso: #0755,#0756,#0758
  2328.  
  2329. Format of IFS open file structure:
  2330. Offset    Size    Description    (Table 0758)
  2331.  00h    WORD    ???
  2332.  02h    WORD    device info word
  2333.  04h    WORD    file open mode
  2334.  06h    WORD    ???
  2335.  08h    WORD    file attributes
  2336.  0Ah    WORD    owner's network machine number
  2337.  0Ch    WORD    owner's PSP segment
  2338.  0Eh    DWORD    file size
  2339.  12h    DWORD    current offset in file
  2340.  16h    WORD    file time
  2341.  18h    WORD    file date
  2342.  1Ah 11 BYTEs    filename in FCB format
  2343.  25h    WORD    ???
  2344.  27h    WORD    hash value of SFT address
  2345.         (low word of linear address + segment&F000h)
  2346.  29h  3 WORDs    network info from SFT
  2347.  2Fh    WORD    ???
  2348.  
  2349. Format of one item in DOS 4+ list of special program names:
  2350. Offset    Size    Description    (Table 0759)
  2351.  00h    BYTE    length of name (00h = end of list)
  2352.  01h  N BYTEs    name in format name.ext
  2353.  N    2 BYTEs    DOS version to return for program (major,minor)
  2354.         (see AH=30h,INT 2F/AX=122Fh)
  2355. ---DOS 4 only---
  2356.  N+2    BYTE    number of times to return fake version number (FFh = always)
  2357. Note:    if the name of the executable for the program making the DOS "get
  2358.       version" call matches one of the names in this list, DOS returns the
  2359.       specified version rather than the true version number
  2360. --------v-215252-----------------------------
  2361. INT 21 - VIRUS - "516"/"Leapfrog" - INSTALLATION CHECK
  2362.     AX = 5252h
  2363. Return: BX = FFEEh if resident
  2364. SeeAlso: AX=4BFFh"Cascade",AX=58CCh
  2365. --------D-2153-------------------------------
  2366. INT 21 - DOS 2+ internal - TRANSLATE BIOS PARAMETER BLOCK TO DRIVE PARAM BLOCK
  2367.     AH = 53h
  2368.     DS:SI -> BIOS Parameter Block (see #0760)
  2369.     ES:BP -> buffer for Drive Parameter Block (see #0514 at AH=32h)
  2370. Return: ES:BP buffer filled
  2371. Note:    for DOS 3+, the cluster at which to start searching is set to 0000h
  2372.       and the number of free clusters is set to FFFFh (unknown)
  2373.  
  2374. Format of BIOS Parameter Block:
  2375. Offset    Size    Description    (Table 0760)
  2376.  00h    WORD    number of bytes per sector
  2377.  02h    BYTE    number of sectors per cluster
  2378.  03h    WORD    number of reserved sectors at start of disk
  2379.  05h    BYTE    number of FATs
  2380.  06h    WORD    number of entries in root directory
  2381.  08h    WORD    total number of sectors
  2382.         for DOS 4+, set to zero if partition >32M, then set DWORD at
  2383.           15h to actual number of sectors
  2384.  0Ah    BYTE    media ID byte
  2385.  0Bh    WORD    number of sectors per FAT
  2386. ---DOS 3+---
  2387.  0Dh    WORD    number of sectors per track
  2388.  0Fh    WORD    number of heads
  2389.  11h    DWORD    number of hidden sectors
  2390.  15h 11 BYTEs    reserved
  2391. ---DOS 4+ ---
  2392.  15h    DWORD    total number of sectors if word at 08h contains zero
  2393.  19h  6 BYTEs    ???
  2394.  1Fh    WORD    number of cylinders
  2395.  21h    BYTE    device type
  2396.  22h    WORD    device attributes (removable or not, etc)
  2397. ---DR-DOS 5+ ---
  2398.  15h    DWORD    total number of sectors if word at 08h contains zero
  2399.  19h  6 BYTEs    reserved
  2400. ---European MS-DOS 4.00---
  2401.  15h    DWORD    total number of sectors if word at 08h contains zero
  2402.         (however, this DOS does not actually implement >32M partitions)
  2403. SeeAlso: #0514
  2404. --------D-2154-------------------------------
  2405. INT 21 - DOS 2+ - GET VERIFY FLAG
  2406.     AH = 54h
  2407. Return: AL = verify flag
  2408.         00h off
  2409.         01h on (all disk writes verified after writing)
  2410. SeeAlso: AH=2Eh
  2411. --------D-2155-------------------------------
  2412. INT 21 - DOS 2+ internal - CREATE CHILD PSP
  2413.     AH = 55h
  2414.     DX = segment at which to create new PSP
  2415.     SI = (DOS 3+) value to place in memory size field at DX:[0002h]
  2416. Return: CF clear if successful
  2417. Notes:    creates a "child" PSP rather than making an exact copy of the current
  2418.       PSP; the new PSP's parent pointer is set to the current PSP and the
  2419.       reference count for each inherited file is incremented
  2420.     (DOS 2+) sets current PSP to DX
  2421.     (DOS 3+) marks "no inherit" file handles as closed in child PSP
  2422. SeeAlso: AH=26h,AH=50h
  2423. --------D-2156-------------------------------
  2424. INT 21 - DOS 2+ - "RENAME" - RENAME FILE
  2425.     AH = 56h
  2426.     DS:DX -> ASCIZ filename of existing file (no wildcards, but see below)
  2427.     ES:DI -> ASCIZ new filename (no wildcards)
  2428.     CL = attribute mask (server call only, see below)
  2429. Return: CF clear if successful
  2430.     CF set on error
  2431.         AX = error code (02h,03h,05h,11h) (see #0770)
  2432. Notes:    allows move between directories on same logical volume
  2433.     this function does not set the archive attribute
  2434.       (see #0535 at AX=4301h), which results in incremental backups not
  2435.       backing up the file under its new name
  2436.     open files should not be renamed
  2437.     (DOS 3+) allows renaming of directories
  2438.     (DOS 3.1+) wildcards are allowed if invoked via AX=5D00h, in which case
  2439.       error 12h (no more files) is returned on success, and both source and
  2440.       destination specs must be canonical (as returned by AH=60h).
  2441.       Wildcards in the destination are replaced by the corresponding char
  2442.       of each source file being renamed.  Under DOS 3.x, the call will fail
  2443.       if the destination wildcard is *.* or equivalent; under DR-DOS 5.0,
  2444.       the call will fail if any wildcards are used.     When invoked via
  2445.       AX=5D00h, only those files matching the attribute mask in CL are
  2446.       renamed.
  2447.     under the FlashTek X-32 DOS extender, the old-name pointer is in DS:EDX
  2448.       and the new-name pointer is in ES:EDI (DS must equal ES)
  2449. BUG:    under DR-DOS 3.41, this function will generate a new directory entry
  2450.       with the new name (including any wildcards) which can only be removed
  2451.       with a sector editor when invoked via AX=5D00h
  2452. SeeAlso: AH=17h,AX=4301h,AX=5D00h,AH=60h,AH=71h
  2453. --------D-215700-----------------------------
  2454. INT 21 - DOS 2+ - GET FILE'S DATE AND TIME
  2455.     AX = 5700h
  2456.     BX = file handle
  2457. Return: CF clear if successful
  2458.         CX = file's time (see #0761)
  2459.         DX = file's date (see #0762)
  2460.     CF set on error
  2461.         AX = error code (01h,06h) (see #0770)
  2462. Note:    under DR-DOS 3.41 and 5.0, this function returns 0 (no date/time) for
  2463.       character devices; MS-DOS returns date and time of opening
  2464. SeeAlso: AX=5701h
  2465.  
  2466. Bitfields for file time:
  2467. Bit(s)    Description    (Table 0761)
  2468.  15-11    hours (0-23)
  2469.  10-5    minutes
  2470.  4-0    seconds/2
  2471.  
  2472. Bitfields for file date:
  2473. Bit(s)    Description    (Table 0762)
  2474.  15-9    year - 1980
  2475.  8-5    month
  2476.  4-0    day
  2477. --------D-215701-----------------------------
  2478. INT 21 - DOS 2+ - SET FILE'S DATE AND TIME
  2479.     AX = 5701h
  2480.     BX = file handle
  2481.     CX = new time (see #0761)
  2482.     DX = new date (see #0762)
  2483. Return: CF clear if successful
  2484.     CF set on error
  2485.         AX = error code (01h,06h) (see #0770)
  2486. SeeAlso: AX=5700h
  2487. --------D-215702-----------------------------
  2488. INT 21 - DOS 4.x only - GET EXTENDED ATTRIBUTES FOR FILE
  2489.     AX = 5702h
  2490.     BX = file handle
  2491.     CX = size of result buffer or 0000h
  2492.     DS:SI -> EAP list (see #0763)
  2493.     ES:DI -> buffer for returned EAV list (see #0766)
  2494. Return: CF clear if successful
  2495.         CX = size of returned data
  2496.     CF set on error
  2497.         AX = error code (see #0770)
  2498. Desc:    get the current value of one or more extended attributes
  2499. Notes:    if CX=0000h on entry, ES:DI is ignored and no data is actually
  2500.       returned, only the amount of data which is available
  2501.     the default DOS 4 behavior is to return a single word of 0000h (no
  2502.       structures) in the result buffer if CX>=0002h on entry
  2503. SeeAlso: AX=5703h,AX=5704h,AH=6Eh,INT 2F/AX=112Dh
  2504.  
  2505. Format of EAP (extended attribute properties) list:
  2506. Offset    Size    Description    (Table 0763)
  2507.  00h    WORD    number of EAP structures following
  2508.  02h    var    array of EAP structures (see #0764)
  2509. SeeAlso: #0766
  2510.  
  2511. Format of EAP (extended attribute property) structure:
  2512. Offset    Size    Description    (Table 0764)
  2513.  00h    BYTE    attribute type
  2514.         01h boolean (either 00h or 01h)
  2515.         02h number (BYTE, WORD, or DWORD)
  2516.         03h string
  2517.         04h date stamp
  2518.         05h time stamp
  2519.  01h    WORD    EAP flags (see #0765)
  2520.  03h    BYTE    size of reference string (name)
  2521.  04h  N BYTEs    reference string
  2522.  
  2523. Bitfields for EAP flags:
  2524. Bit(s)    Description    (Table 0765)
  2525.  12    unchangeable
  2526.  13    ignore
  2527.  14    unchangeable
  2528.  15    used by COMMAND.COM for code page, but not understood by ATTRIB
  2529.  
  2530. Format of EAV (extended attribute value) list:
  2531. Offset    Size    Description    (Table 0766)
  2532.  00h    WORD    number of EAV structures following
  2533.  02h    var    array of Extended Attribute Value structures (see #0767)
  2534. SeeAlso: #0763
  2535.  
  2536. Format of Extended Attribute Value structures:
  2537. Offset    Size    Description    (Table 0767)
  2538.  00h  4 BYTEs    ???
  2539.  04h    BYTE    size of reference string
  2540.  05h    WORD    size of value
  2541.  07h    var    reference string
  2542.     var    value
  2543. --------O-215702-----------------------------
  2544. INT 21 - OS/2 v1.1+ Family API - DosQFileInfo
  2545.     AX = 5702h
  2546.     BX = file handle
  2547.     CX = size of buffer for information
  2548.     DX = level of information
  2549.     ES:DI -> buffer for information
  2550. Return: CF clear if successful
  2551.     CF set on error
  2552.         AX = error code
  2553. SeeAlso: AX=5702h/BX=FFFFh,AX=5703h"OS/2"
  2554. --------O-215702BXFFFF-----------------------
  2555. INT 21 - OS/2 v1.1+ Compatibility Box Family API - DosQPathInfo
  2556.     AX = 5702h
  2557.     BX = FFFFh
  2558.     CX = size of buffer for information
  2559.     DX = level of information (0002h)
  2560.     DS:SI -> filename
  2561.     ES:DI -> buffer for FAPI path information (see #0768)
  2562. Return: CF clear if successful
  2563.         AL = 00h
  2564.     CF set on error
  2565.         AX = error code
  2566. SeeAlso: AX=5702h"OS/2",AX=5703h/BX=FFFFh
  2567.  
  2568. Format of FAPI path information:
  2569. Offset    Size    Description    (Table 0768)
  2570.  00h 22 BYTEs    ???
  2571.  16h    DWORD    extended attribute size (none present if less than 5)
  2572. --------D-215703-----------------------------
  2573. INT 21 - DOS 4.x only - GET EXTENDED ATTRIBUTE PROPERTIES
  2574.     AX = 5703h
  2575.     BX = file handle
  2576.     CX = size of result buffer or 0000h
  2577.     ES:DI -> result buffer
  2578. Return: CF clear if successful
  2579.         CX = size of returned data
  2580.     CF set on error
  2581.         AX = error code (see #0770)
  2582.     ES:DI -> zero word (DOS 4.0) if CX >= 2 on entry
  2583. Desc:    get a list of the extended attributes which are defined for the
  2584.       specified file
  2585. Notes:    if CX=0000h on entry, ES:DI is ignored and no data is actually
  2586.       returned, only the amount of data which is available
  2587.     the default DOS 4 behavior is to return a trivial EAP list consisting
  2588.       of the single word 0000h (no EAP structures) if CX>=0002h on entry
  2589. SeeAlso: AX=5702h,AX=5704h,AH=6Eh,INT 2F/AX=112Dh
  2590. --------O-215703-----------------------------
  2591. INT 21 - OS/2 v1.1+ Family API - DosSetFileInfo
  2592.     AX = 5703h
  2593.     BX = file handle
  2594.     CX = size of information buffer
  2595.     DX = level of information
  2596.     ES:DI -> information buffer
  2597. Return: CF clear if successful
  2598.     CF set on error
  2599.         AX = error code
  2600. SeeAlso: AX=5702h"OS/2",AX=5703h/BX=FFFFh
  2601. --------O-215703BXFFFF-----------------------
  2602. INT 21 - OS/2 v1.1+ Family API - DosSetPathInfo
  2603.     AX = 5703h
  2604.     BX = FFFFh
  2605.     CX = size of information buffer
  2606.     DX = level of information
  2607.     DS:SI -> filename
  2608.     ES:DI -> information buffer
  2609. Return: CF clear if successful
  2610.     CF set on error
  2611.         AX = error code
  2612. SeeAlso: AX=5702h/BX=FFFFh,AX=5703h"OS/2"
  2613. --------D-215704-----------------------------
  2614. INT 21 - DOS 4.x only - SET EXTENDED ATTRIBUTES
  2615.     AX = 5704h
  2616.     BX = file handle
  2617.     ES:DI -> EAV list (see #0766)
  2618. Return: CF clear if successful
  2619.     CF set on error
  2620.         AX = error code (see #0770)
  2621. Note:    the default DOS 4 behavior is to do nothing and return successfully
  2622. SeeAlso: AX=5702h,AX=5703h,INT 2F/AX=112Dh
  2623. ----------215757BX5757-----------------------
  2624. INT 21 U - IBM Genie - Resident Manager - INSTALLATION CHECK
  2625.     AX = 5757h
  2626.     BX = 5757h
  2627. Return: AX = 0000h if installed
  2628.         BX = ???
  2629.         DX = ???
  2630.         DS:SI -> list of 27 DWORD entry point addresses
  2631. Program: IBM Genie is a set of utility TSRs by Helix Software
  2632. Note:    other functions possible if BX <> 5757h, but details not yet available
  2633. ----------215758-----------------------------
  2634. INT 21 U - Headroom - API
  2635.     AX = 5758h
  2636.     BL = function
  2637.         00h ???
  2638.         01h get Headroom location
  2639.         Return: CF clear if installed
  2640.                 AX = PSP segment of Headroom TSR
  2641.                 BX = paragraphs of memory used by Headroom
  2642.             CF set if not (normal DOS return)
  2643.         Note:    this function is also used as an installation check
  2644.         02h get INT 21 handler
  2645.         Return: CF clear
  2646.             ES:BX -> Headroom's INT 21 handler
  2647.         Note: also sets unknown flag
  2648.         03h launch application???
  2649.         DS:SI -> 233-byte application record
  2650.         Return: ???
  2651.         04h ???
  2652.         ???
  2653.         Return: CF clear
  2654.         05h get swap directory
  2655.         Return: CF clear
  2656.             DX:AX -> ASCIZ swap directory name
  2657.         06h ???
  2658.         DX = ???
  2659.         Return: CF clear
  2660.         07h ???
  2661.         08h ???
  2662.         09h get current application
  2663.         Return: BX = application number
  2664.         0Ah ???
  2665.         DX = application number
  2666.         DS:SI = ???
  2667.         Return: ???
  2668.         0Bh ???
  2669.         0Ch ???
  2670.         DX = application number
  2671.         ???
  2672.         Return: ???
  2673.         0Dh ???
  2674.         DX = application number
  2675.         ???
  2676.         Return: ???
  2677.         0Eh get ???
  2678.         Return: CF clear
  2679.             AX = ???
  2680.         0Fh set ??? flag
  2681.         10h clear ??? flag
  2682.         11h find application by name
  2683.         DS:SI -> ASCIZ application name
  2684.         Return: CF clear
  2685.             AX = application number or FFFFh if not loaded
  2686.         12h ???
  2687.         DX = application number
  2688.         Return: CF clear
  2689.             ???
  2690.         13h ???
  2691.         Return: CF clear
  2692.         14h ???
  2693.         same as function 13h
  2694.         15h set ???
  2695.         DX = ???
  2696.         16h get ???
  2697.         Return: AX = ??? set by function 15h
  2698.         17h get ???
  2699.         Return: BX = ???
  2700.             CX = ??? (may be pointer in BX:CX)
  2701.         18h BUG: branches incorrectly due to fencepost error
  2702. Program: Headroom is a TSR/task switcher by Helix Software
  2703. SeeAlso: AX=4C57h,AX=5757h,INT 2F/AX=5758h
  2704. --------D-2158-------------------------------
  2705. INT 21 - DOS 3+ - GET OR SET MEMORY ALLOCATION STRATEGY
  2706.     AH = 58h
  2707.     AL = subfunction
  2708.         00h get allocation strategy
  2709.         Return: AX = current strategy (see #0769)
  2710.         01h set allocation strategy
  2711.         BL = new allocation strategy (see #0769)
  2712.         BH = 00h (DOS 5+)
  2713. Return: CF clear if successful
  2714.     CF set on error
  2715.         AX = error code (01h) (see #0770)
  2716. Notes:    the Set subfunction accepts any value in BL for DOS 3.x and 4.x;
  2717.       2 or greater means last fit
  2718.     the Get subfunction returns the last value set
  2719.     setting an allocation strategy involving high memory does not
  2720.       automatically link in the UMB memory chain; this must be done
  2721.       explicitly with AX=5803h in order to actually allocate high memory
  2722.     a program which changes the allocation strategy should restore it
  2723.       before terminating
  2724.     Toshiba MS-DOS 2.11 supports subfunctions 00h and 01h
  2725.     DR-DOS 3.41 reportedly reverses subfunctions 00h and 01h
  2726. SeeAlso: AH=48h,AH=49h,AH=4Ah,INT 2F/AX=4310h,INT 67/AH=3Fh
  2727.  
  2728. (Table 0769)
  2729. Values for DOS memory allocation strategy:
  2730.  00h low memory first fit
  2731.  01h low memory best fit
  2732.  02h low memory last fit
  2733. ---DOS 5+ ---
  2734.  40h high memory first fit
  2735.  41h high memory best fit
  2736.  42h high memory last fit
  2737.  80h first fit, try high then low memory
  2738.  81h best fit, try high then low memory
  2739.  82h last fit, try high then low memory
  2740. --------D-2158-------------------------------
  2741. INT 21 - DOS 5+ - GET OR SET UMB LINK STATE
  2742.     AH = 58h
  2743.     AL = subfunction
  2744.         02h get UMB link state
  2745.         Return: AL = current link state
  2746.                 00h UMBs not part of DOS memory chain
  2747.                 01h UMBs in DOS memory chain
  2748.         03h set UMB link state
  2749.         BX = new link state
  2750.             0000h remove UMBs from DOS memory chain
  2751.             0001h add UMBs to DOS memory chain
  2752. Return: CF clear if successful
  2753.     CF set on error
  2754.         AX = error code (01h) (see #0770)
  2755. Note:    a program which changes the UMB link state should restore it before
  2756.       terminating
  2757. --------v-2158CC-----------------------------
  2758. INT 21 - VIRUS - "1067"/"Headcrash" - INSTALLATION CHECK
  2759.     AX = 58CCh
  2760. Return: CF clear if resident
  2761. SeeAlso: AX=5252h,AX=58DDh,AX=6969h
  2762. --------v-2158DD-----------------------------
  2763. INT 21 - VIRUS - "1067"/"Headcrash" - GET ORIGINAL INT 21h VECTOR
  2764.     AX = 58DDh
  2765. Return: CX = code segment of virus
  2766.     ES:BX = old INT 21h vector
  2767. SeeAlso: AX=5252h,AX=58CCh,AX=6969h
  2768. --------D-2159--BX0000-----------------------
  2769. INT 21 - DOS 3+ - GET EXTENDED ERROR INFORMATION
  2770.     AH = 59h
  2771.     BX = 0000h
  2772. Return: AX = extended error code (see #0770)
  2773.     BH = error class (see #0772)
  2774.     BL = recommended action (see #0773)
  2775.     CH = error locus (see #0774)
  2776.     ES:DI may be pointer (see #0771, error code list below)
  2777.     CL, DX, SI, BP, and DS destroyed
  2778. Notes:    functions available under DOS 2.x map the true DOS 3+ error code into
  2779.       one supported under DOS 2.x
  2780.     you should call this function to retrieve the true error code when an
  2781.       FCB or DOS 2.x call returns an error
  2782.     under DR-DOS 5.0, this function does not use any of the DOS-internal
  2783.       stacks and may thus be called at any time
  2784. SeeAlso: AH=59h/BX=0001h,AX=5D0Ah,INT 2F/AX=122Dh
  2785.  
  2786. (Table 0770)
  2787. Values for DOS extended error code:
  2788.  00h (0)   no error
  2789.  01h (1)   function number invalid
  2790.  02h (2)   file not found
  2791.  03h (3)   path not found
  2792.  04h (4)   too many open files (no handles available)
  2793.  05h (5)   access denied
  2794.  06h (6)   invalid handle
  2795.  07h (7)   memory control block destroyed
  2796.  08h (8)   insufficient memory
  2797.  09h (9)   memory block address invalid
  2798.  0Ah (10)  environment invalid (usually >32K in length)
  2799.  0Bh (11)  format invalid
  2800.  0Ch (12)  access code invalid
  2801.  0Dh (13)  data invalid
  2802.  0Eh (14)  reserved
  2803.  0Fh (15)  invalid drive
  2804.  10h (16)  attempted to remove current directory
  2805.  11h (17)  not same device
  2806.  12h (18)  no more files
  2807. ---DOS 3+---
  2808.  13h (19)  disk write-protected
  2809.  14h (20)  unknown unit
  2810.  15h (21)  drive not ready
  2811.  16h (22)  unknown command
  2812.  17h (23)  data error (CRC)
  2813.  18h (24)  bad request structure length
  2814.  19h (25)  seek error
  2815.  1Ah (26)  unknown media type (non-DOS disk)
  2816.  1Bh (27)  sector not found
  2817.  1Ch (28)  printer out of paper
  2818.  1Dh (29)  write fault
  2819.  1Eh (30)  read fault
  2820.  1Fh (31)  general failure
  2821.  20h (32)  sharing violation
  2822.  21h (33)  lock violation
  2823.  22h (34)  disk change invalid (ES:DI -> media ID structure)(see #0771)
  2824.  23h (35)  FCB unavailable
  2825.  24h (36)  sharing buffer overflow
  2826.  25h (37)  (DOS 4+) code page mismatch
  2827.  26h (38)  (DOS 4+) cannot complete file operation (out of input)
  2828.  27h (39)  (DOS 4+) insufficient disk space
  2829.  28h-31h   reserved
  2830.  32h (50)  network request not supported
  2831.  33h (51)  remote computer not listening
  2832.  34h (52)  duplicate name on network
  2833.  35h (53)  network name not found
  2834.  36h (54)  network busy
  2835.  37h (55)  network device no longer exists
  2836.  38h (56)  network BIOS command limit exceeded
  2837.  39h (57)  network adapter hardware error
  2838.  3Ah (58)  incorrect response from network
  2839.  3Bh (59)  unexpected network error
  2840.  3Ch (60)  incompatible remote adapter
  2841.  3Dh (61)  print queue full
  2842.  3Eh (62)  queue not full
  2843.  3Fh (63)  not enough space to print file
  2844.  40h (64)  network name was deleted
  2845.  41h (65)  network: Access denied
  2846.  42h (66)  network device type incorrect
  2847.  43h (67)  network name not found
  2848.  44h (68)  network name limit exceeded
  2849.  45h (69)  network BIOS session limit exceeded
  2850.  46h (70)  temporarily paused
  2851.  47h (71)  network request not accepted
  2852.  48h (72)  network print/disk redirection paused
  2853.  49h (73)  network software not installed
  2854.         (LANtastic) invalid network version
  2855.  4Ah (74)  unexpected adapter close
  2856.         (LANtastic) account expired
  2857.  4Bh (75)  (LANtastic) password expired
  2858.  4Ch (76)  (LANtastic) login attempt invalid at this time
  2859.  4Dh (77)  (LANtastic v3+) disk limit exceeded on network node
  2860.  4Eh (78)  (LANtastic v3+) not logged in to network node
  2861.  4Fh (79)  reserved
  2862.  50h (80)  file exists
  2863.  51h (81)  reserved
  2864.  52h (82)  cannot make directory
  2865.  53h (83)  fail on INT 24h
  2866.  54h (84)  (DOS 3.3+) too many redirections
  2867.  55h (85)  (DOS 3.3+) duplicate redirection
  2868.  56h (86)  (DOS 3.3+) invalid password
  2869.  57h (87)  (DOS 3.3+) invalid parameter
  2870.  58h (88)  (DOS 3.3+) network write fault
  2871.  59h (89)  (DOS 4+) function not supported on network
  2872.  5Ah (90)  (DOS 4+) required system component not installed
  2873.  64h (100) (MSCDEX) unknown error
  2874.  65h (101) (MSCDEX) not ready
  2875.  66h (102) (MSCDEX) EMS memory no longer valid
  2876.  67h (103) (MSCDEX) not High Sierra or ISO-9660 format
  2877.  68h (104) (MSCDEX) door open
  2878.  
  2879. Format of media ID structure:
  2880. Offset    Size    Description    (Table 0771)
  2881.  00h 12 BYTEs    ASCIZ volume label of required disk
  2882.  0Ch    DWORD    serial number (DOS 4+)
  2883.  
  2884. (Table 0772)
  2885. Values for DOS Error Class:
  2886.  01h    out of resource (storage space or I/O channels)
  2887.  02h    temporary situation (file or record lock)
  2888.  03h    authorization (denied access)
  2889.  04h    internal (system software bug)
  2890.  05h    hardware failure
  2891.  06h    system failure (configuration file missing or incorrect)
  2892.  07h    application program error
  2893.  08h    not found
  2894.  09h    bad format
  2895.  0Ah    locked
  2896.  0Bh    media error
  2897.  0Ch    already exists
  2898.  0Dh    unknown
  2899.  
  2900. (Table 0773)
  2901. Values for DOS Suggested Action:
  2902.  01h    retry
  2903.  02h    delayed retry
  2904.  03h    prompt user to reenter input
  2905.  04h    abort after cleanup
  2906.  05h    immediate abort
  2907.  06h    ignore
  2908.  07h    retry after user intervention
  2909.  
  2910. (Table 0774)
  2911. Values for DOS Error Locus:
  2912.  01h    unknown or not appropriate
  2913.  02h    block device (disk error)
  2914.  03h    network related
  2915.  04h    serial device (timeout)
  2916.  05h    memory related
  2917. --------D-2159--BX0001-----------------------
  2918. INT 21 - European MS-DOS 4.0 - GET HARD ERROR INFORMATION
  2919.     AH = 59h
  2920.     BX = 0001h
  2921. Return: ES:DI -> hard error information packet (see #0775) for most recent
  2922.         hard (critical) error
  2923. SeeAlso: AH=59h/BX=0000h,AH=95h,INT 24
  2924.  
  2925. Format of European MS-DOS 4.0 hard error information packet:
  2926. Offset    Size    Description    (Table 0775)
  2927.  00h    WORD    contents of AX at system entry
  2928.  02h    WORD    Process ID which encountered error
  2929.  04h    WORD    contents of AX at time of error
  2930.  06h    BYTE    error type
  2931.         00h physical I/O error
  2932.         01h disk change request
  2933.         02h file sharing violation
  2934.         03h FCB problem
  2935.         04h file locking violation
  2936.         05h bad FAT
  2937.         06h network detected error
  2938.  07h    BYTE    INT 24 error code
  2939.  08h    WORD    extended error code (see #0770)
  2940.  0Ah    DWORD    pointer to associated device
  2941. --------D-215A-------------------------------
  2942. INT 21 - DOS 3+ - CREATE TEMPORARY FILE
  2943.     AH = 5Ah
  2944.     CX = file attribute (see #0535 at AX=4301h)
  2945.     DS:DX -> ASCIZ path ending with a '\' + 13 zero bytes to receive the
  2946.         generated filename
  2947. Return: CF clear if successful
  2948.         AX = file handle opened for read/write in compatibility mode
  2949.         DS:DX pathname extended with generated name for temporary file
  2950.     CF set on error
  2951.         AX = error code (03h,04h,05h) (see #0770)
  2952. Desc:    creates a file with a unique name which must be explicitly deleted
  2953. BUGS:    COMPAQ DOS 3.31 hangs if the pathname is at XXXXh:0000h; it apparently
  2954.       wraps around to the end of the segment
  2955.     MS-DOS 5.00 revisions A and B and PC-DOS 5.00 revision A reportedly
  2956.       hang the system if the specified path is the root directory and the
  2957.       root directory is full (no free directory entries)
  2958. Note:    under the FlashTek X-32 DOS extender, the path pointer is in DS:EDX
  2959. SeeAlso: AH=3Ch,AH=5Bh
  2960. --------D-215B-------------------------------
  2961. INT 21 - DOS 3+ - CREATE NEW FILE
  2962.     AH = 5Bh
  2963.     CX = file attribute (see #0535 at AX=4301h)
  2964.     DS:DX -> ASCIZ filename
  2965. Return: CF clear if successful
  2966.         AX = file handle opened for read/write in compatibility mode
  2967.     CF set on error
  2968.         AX = error code (03h,04h,05h,50h) (see #0770)
  2969. Notes:    unlike AH=3Ch, this function will fail if the specified file exists
  2970.       rather than truncating it; this permits its use in creating semaphore
  2971.       files because it is an atomic "test and set" operation
  2972.     under the FlashTek X-32 DOS extender, the filename pointer is in DS:EDX
  2973. SeeAlso: AH=3Ch,AH=5Ah
  2974. --------D-215C-------------------------------
  2975. INT 21 - DOS 3+ - "FLOCK" - RECORD LOCKING
  2976.     AH = 5Ch
  2977.     AL = subfunction
  2978.         00h lock region of file
  2979.         01h unlock region of file
  2980.     BX = file handle
  2981.     CX:DX = start offset of region within file
  2982.     SI:DI = length of region in bytes
  2983. Return: CF clear if successful
  2984.     CF set on error
  2985.         AX = error code (01h,06h,21h,24h) (see #0770)
  2986. Notes:    error returned unless SHARE or network installed
  2987.     an unlock call must specify the same region as some prior lock call
  2988.     locked regions become entirely inaccessible to other processes
  2989.     duplicate handles created with AH=45h or AH=46h inherit locks, but
  2990.       handles inherited by child processes (see AH=4Bh) do not
  2991.     under DR-DOS 3.41 and 5.0, if a process opens a file without the no-
  2992.       inherit flag and then starts a child, any locks set by the parent
  2993.       are ignored, and the child will only get an error if it tries to
  2994.       lock an area previously locked by the parent process
  2995. SeeAlso: AX=440Bh,AH=BCh,AH=BEh,INT 2F/AX=110Ah,INT 2F/AX=110Bh
  2996. --------D-215D00-----------------------------
  2997. INT 21 U - DOS 3.1+ internal - SERVER FUNCTION CALL
  2998.     AX = 5D00h
  2999.     DS:DX -> DOS parameter list (see #0776)
  3000.     DPL contains all register values for a call to INT 21h
  3001. Return: as appropriate for function being called
  3002. Notes:    does not check AH.  Out of range values will crash the system
  3003.     executes using specified computer ID and process ID
  3004.     sharing delay loops skipped
  3005.     a special sharing mode is enabled to handle FCBs opened across network
  3006.     wildcards are enabled for DELETE (AH=41h) and RENAME (AH=56h) under
  3007.       MS-DOS; under DR-DOS 3.41, wildcards corrupt the filesystem; and
  3008.       under DR-DOS 5.0-6.0, the call returns error code 03h due to improper
  3009.       support for the server function call (see below)
  3010.     an extra file attribute parameter is enabled for OPEN (AH=3Dh),
  3011.       DELETE (AH=41h), and RENAME (AH=56h)
  3012.     functions which take filenames require canonical names (as returned
  3013.       by AH=60h); this is apparently to prevent multi-hop file forwarding
  3014. BUGS:    the OS/2 2.0 DOS Boot Session incorrectly maps DOS drive letters,
  3015.       seemingly ignoring HPFS drives
  3016.     DR-DOS 5.0-6.0 merely recursively call INT 21 after loading the
  3017.       registers from the DPL, leading to problems for peer-to-peer
  3018.       networks
  3019. SeeAlso: AH=3Dh,AH=41h,AH=56h,AH=60h
  3020.  
  3021. Format of DOS parameter list:
  3022. Offset    Size    Description    (Table 0776)
  3023.  00h    WORD    AX
  3024.  02h    WORD    BX
  3025.  04h    WORD    CX
  3026.  06h    WORD    DX
  3027.  08h    WORD    SI
  3028.  0Ah    WORD    DI
  3029.  0Ch    WORD    DS
  3030.  0Eh    WORD    ES
  3031.  10h    WORD    reserved (0)
  3032.  12h    WORD    computer ID (0 = current system)
  3033.  14h    WORD    process ID (PSP segment on specified computer)
  3034. Note:    under Windows Enhanced mode, the computer ID is normally the virtual
  3035.       machine ID (see INT 2F/AX=1683h), though this can reportedly be
  3036.       changed by setting UniqueDOSPSP= in SYSTEM.INI
  3037. --------D-215D01-----------------------------
  3038. INT 21 U - DOS 3.1+ internal - COMMIT ALL FILES FOR SPECIFIED COMPUTER/PROCESS
  3039.     AX = 5D01h
  3040.     DS:DX -> DOS parameter list (see #0776), only computer ID and
  3041.           process ID fields used
  3042. Return: CF set on error
  3043.         AX = error code (see #0770)
  3044.     CF clear if successful
  3045. Notes:    flushes buffers and updates directory entries for each file which has
  3046.       been written to; if remote file, calls INT 2F/AX=1107h
  3047.     the computer ID and process ID are stored but ignored under DOS 3.3
  3048.     not supported by DR-DOS 3.41 and 5.0; returns error code 01h
  3049. SeeAlso: AH=0Dh,AH=68h,INT 2F/AX=1107h
  3050. --------D-215D02-----------------------------
  3051. INT 21 U - DOS 3.1+ internal - SHARE.EXE - CLOSE FILE BY NAME
  3052.     AX = 5D02h
  3053.     DS:DX -> DOS parameter list (see #0776), only fields DX, DS,
  3054.           computer ID, and process ID used
  3055.     DPL's DS:DX -> ASCIZ name of file to close
  3056. Return: CF set on error
  3057.         AX = error code (see #0770)
  3058.     CF clear if successful
  3059. Notes:    error unless SHARE is loaded (calls [SysFileTable-28h])
  3060.       (see #0732 at AH=52h)
  3061.     name must be canonical fully-qualified, such as returned by AH=60h
  3062.     not supported by DR-DOS 3.41 and 5.0; returns error code 01h
  3063. SeeAlso: AX=5D03h,AX=5D04h,AH=3Eh,AH=60h
  3064. --------D-215D03-----------------------------
  3065. INT 21 U - DOS 3.1+ internal - SHARE.EXE - CLOSE ALL FILES FOR GIVEN COMPUTER
  3066.     AX = 5D03h
  3067.     DS:DX -> DOS parameter list (see #0776), only computer ID used
  3068. Return: CF set on error
  3069.         AX = error code (see #0770)
  3070.     CF clear if successful
  3071. Notes:    error unless SHARE is loaded (calls [SysFileTable-30h])
  3072.       (see #0732 at AH=52h)
  3073.     not supported by DR-DOS 3.41 and 5.0; returns error code 01h
  3074. SeeAlso: AX=5D02h,AX=5D04h
  3075. --------D-215D04-----------------------------
  3076. INT 21 U - DOS 3.1+ internal - SHARE.EXE - CLOSE ALL FILES FOR GIVEN PROCESS
  3077.     AX = 5D04h
  3078.     DS:DX -> DOS parameter list (see #0776), only computer ID and
  3079.           process ID fields used
  3080. Return: CF set on error
  3081.         AX = error code (see #0770)
  3082.     CF clear if successful
  3083. Notes:    error unless SHARE is loaded (calls [SysFileTable-2Ch])
  3084.        (see #0732 at AH=52h)
  3085.     not supported by DR-DOS 3.41 and 5.0; returns error code 01h
  3086. SeeAlso: AX=5D02h,AX=5D03h,INT 2F/AX=111Dh
  3087. --------D-215D05-----------------------------
  3088. INT 21 U - DOS 3.1+ internal - SHARE.EXE - GET OPEN FILE LIST ENTRY
  3089.     AX = 5D05h
  3090.     DS:DX -> DOS parameter list (see #0776)
  3091.     DPL's BX = index of sharing record (see #0733 at AH=52h)
  3092.     DPL's CX = index of SFT in sharing record's SFT list
  3093. Return: CF clear if successful
  3094.         ES:DI -> ASCIZ filename
  3095.         BX = network machine number of SFT's owner
  3096.         CX = number of locks held by SFT's owner
  3097.     CF set if either index out of range
  3098.         AX = 0012h (no more files)
  3099. Notes:    error unless SHARE is loaded (calls [SysFileTable-18h])
  3100.       (see #0732 at AH=52h)
  3101.     names are always canonical fully-qualified, such as returned by AH=60h
  3102.     not supported by DR-DOS 3.41 and 5.0, but does not return an error
  3103. SeeAlso: AH=5Ch,AH=60h
  3104. --------D-215D06-----------------------------
  3105. INT 21 U - DOS 3.0+ internal - GET ADDRESS OF DOS SWAPPABLE DATA AREA
  3106.     AX = 5D06h
  3107. Return: CF set on error
  3108.        AX = error code (see #0770)
  3109.     CF clear if successful
  3110.         DS:SI -> nonreentrant data area (includes all three DOS stacks)
  3111.         (critical error flag is first byte) (see #0777)
  3112.         CX = size in bytes of area which must be swapped while in DOS
  3113.         DX = size in bytes of area which must always be swapped
  3114. Notes:    the Critical Error flag is used in conjunction with the InDOS flag
  3115.       (see AH=34h) to determine when it is safe to enter DOS from a TSR
  3116.     setting CritErr flag allows use of functions 50h/51h from INT 28h under
  3117.       DOS 2.x by forcing use of correct stack
  3118.     swapping the data area allows reentering DOS unless DOS is in a
  3119.       critical section delimited by INT 2A/AH=80h and INT 2A/AH=81h,82h
  3120.     under DOS 4.0, AX=5D0Bh should be used instead of this function
  3121.     SHARE and other DOS utilities consult the byte at offset 04h in the
  3122.       DOS data segment (see INT 2F/AX=1203h) to determine the SDA format
  3123.       in use: 00h = DOS 3.x, 01h = DOS 4.0-6.0, other = error.
  3124.     DR-DOS 3.41+ supports this function, but the SDA format beyond the
  3125.       first 18h bytes is completely different from MS-DOS
  3126. SeeAlso: AX=5D0Bh,INT 2A/AH=80h,INT 2A/AH=81h,INT 2A/AH=82h
  3127.  
  3128. Format of DOS 3.10-3.30 Swappable Data Area:
  3129. Offset    Size    Description    (Table 0777)
  3130.  -34    BYTE    (DOS 3.10+) printer echo flag (00h off, FFh active)
  3131.  -31    BYTE    (DOS 3.30) current switch character
  3132.  -28    BYTE    (DOS 3.30) incremented on each INT 21/AX=5E01h call
  3133.  -27 16 BYTEs    (DOS 3.30) machine name set by INT 21/AX=5E01h
  3134.  -11  5 WORDs    zero-terminated list of offsets which need to be patched to
  3135.           enable critical-section calls (see INT 2A/AH=80h)
  3136.  -1    BYTE    unused padding
  3137. ---start of actual SDA---
  3138.  00h    BYTE    critical error flag ("ErrorMode")
  3139.  01h    BYTE    InDOS flag (count of active INT 21 calls)
  3140.  02h    BYTE    drive on which current critical error occurred, or FFh
  3141.         (DR-DOS sets to drive number during INT 24, 00h otherwise)
  3142.  03h    BYTE    locus of last error
  3143.  04h    WORD    extended error code of last error
  3144.  06h    BYTE    suggested action for last error
  3145.  07h    BYTE    class of last error
  3146.  08h    DWORD    ES:DI pointer for last error
  3147.  0Ch    DWORD    current DTA
  3148.  10h    WORD    current PSP
  3149.  12h    WORD    stores SP across an INT 23
  3150.  14h    WORD    return code from last process termination (zerod after reading
  3151.           with AH=4Dh)
  3152.  16h    BYTE    current drive
  3153.  17h    BYTE    extended break flag
  3154. ---remainder need only be swapped if in DOS---
  3155.  18h    WORD    value of AX on call to INT 21
  3156.  1Ah    WORD    PSP segment for sharing/network
  3157.  1Ch    WORD    network machine number for sharing/network (0000h = us)
  3158.  1Eh    WORD    first usable memory block found when allocating memory
  3159.  20h    WORD    best usable memory block found when allocating memory
  3160.  22h    WORD    last usable memory block found when allocating memory
  3161.  24h    WORD    memory size in paragraphs (used only during initialization)
  3162.  26h    WORD    last entry checked during directory search
  3163.  28h    BYTE    flag: INT 24 returned Fail
  3164.  29h    BYTE    flags: allowable INT 24 actions (passed to INT 24 in AH)
  3165.  2Ah    BYTE    directory flag (00h directory, 01h file)
  3166.  2Bh    BYTE    flag: FFh if Ctrl-Break termination, 00h otherwise
  3167.  2Ch    BYTE    flag: allow embedded blanks in FCB
  3168.  2Dh    BYTE    padding (unused)
  3169.  2Eh    BYTE    day of month
  3170.  2Fh    BYTE    month
  3171.  30h    WORD    year - 1980
  3172.  32h    WORD    number of days since 1-1-1980
  3173.  34h    BYTE    day of week (0 = Sunday)
  3174.  35h    BYTE    flag: console swapped during read from device
  3175.  36h    BYTE    flag: safe to call INT 28 if nonzero
  3176.  37h    BYTE    flag: if nonzero, INT 24 Abort turned into INT 24 Fail
  3177.         (set only during process termination)
  3178.  38h 26 BYTEs    device driver request header (see INT 2F/AX=0802h)
  3179.  52h    DWORD    pointer to device driver entry point (used in calling driver)
  3180.  56h 22 BYTEs    device driver request header for I/O calls
  3181.  6Ch 14 BYTEs    device driver request header for disk status check
  3182.  7Ah    DWORD    pointer to device I/O buffer???
  3183.  7Eh    WORD    ???
  3184.  80h    WORD    ???
  3185.  82h    BYTE    type of PSP copy (00h=simple for INT 21/AH=26h, FFh=make child)
  3186.  83h    BYTE    padding (unused)
  3187.  84h  3 BYTEs    24-bit user number (see AH=30h)
  3188.  87h    BYTE    OEM number (see #0513 at AH=30h)
  3189.  88h    WORD    offset to error code conversion table for INT 25/INT 26
  3190.  8Ah  6 BYTEs    CLOCK$ transfer record (see #0745 at AH=52h)
  3191.  90h    BYTE    device I/O buffer for single-byte I/O functions
  3192.  91h    BYTE    padding??? (unused)
  3193.  92h 128 BYTEs    buffer for filename
  3194. 112h 128 BYTEs    buffer for filename
  3195. 192h 21 BYTEs    findfirst/findnext search data block (see #0723 at AH=4Eh)
  3196. 1A7h 32 BYTEs    directory entry for found file (see #0475 at AH=11h)
  3197. 1C7h 81 BYTEs    copy of current directory structure for drive being accessed
  3198. 218h 11 BYTEs    FCB-format filename for device name comparison
  3199. 223h    BYTE    terminating NUL for above filename
  3200. 224h 11 BYTEs    wildcard destination specification for rename (FCB format)
  3201. 22Fh    BYTE    terminating NUL for above spec
  3202. 230h    BYTE    ???
  3203. 231h    WORD    destination file/directory starting sector
  3204. 233h  5 BYTEs    ???
  3205. 238h    BYTE    extended FCB file attribute
  3206. 239h    BYTE    type of FCB (00h regular, FFh extended)
  3207. 23Ah    BYTE    directory search attributes
  3208. 23Bh    BYTE    file open/access mode
  3209. 23Ch    BYTE    file found/delete flag
  3210.         bit 0: file found
  3211.         bit 4: file deleted
  3212. 23Dh    BYTE    flag: device name found on rename, or file not found
  3213. 23Eh    BYTE    splice flag (file name and directory name together)
  3214. 23Fh    BYTE    flag indicating how DOS function was invoked
  3215.         (00h = direct INT 20/INT 21, FFh = server call AX=5D00h)
  3216. 240h    BYTE    sector position within cluster
  3217. 241h    BYTE    flag: translate sector/cluster (00h no, 01h yes)
  3218. 242h    BYTE    flag: 00h if read, 01h if write
  3219. 243h    BYTE    current working drive number
  3220. 244h    BYTE    cluster factor
  3221. 245h    BYTE    flag: cluster split mode
  3222. 246h    BYTE    line edit (AH=0Ah) insert mode flag (nonzero = on)
  3223. 247h    BYTE    canonicalized filename referred to existing file/dir if FFh
  3224. 248h    BYTE    volume ID flag
  3225. 249h    BYTE    type of process termination (00h-03h) (see AH=4Dh)
  3226. 24Ah    BYTE    file create flag (00h = no, search only)
  3227. 24Bh    BYTE    value with which to replace first byte of deleted file's name
  3228.           (normally E5h, but 00h as described under INT 21/AH=13h)
  3229. 24Ch    DWORD    pointer to Drive Parameter Block for critical error invocation
  3230.         temp: used during process termination
  3231. 250h    DWORD    pointer to stack frame containing user registers on INT 21
  3232. 254h    WORD    stores SP across INT 24
  3233. 256h    DWORD    pointer to DOS Drive Parameter Block for ???
  3234. 25Ah    WORD    saving partial cluster number
  3235. 25Ch    WORD    temp: sector of work current cluster
  3236. 25Eh    WORD    high part of cluster number (only low byte referenced)
  3237. 260h    WORD    ??? temp
  3238. 262h    BYTE    Media ID byte returned by AH=1Bh,1Ch
  3239. 263h    BYTE    padding (unused)
  3240. 264h    DWORD    pointer to device header when filename is character device
  3241. 268h    DWORD    pointer to current SFT
  3242. 26Ch    DWORD    pointer to current directory structure for drive being accessed
  3243. 270h    DWORD    pointer to caller's FCB
  3244. 274h    WORD    number of SFT to which file being opened will refer
  3245. 276h    WORD    temporary storage for file handle
  3246. 278h    DWORD    pointer to a JFT entry in process handle table
  3247.           (see #0498 at AH=26h)
  3248. 27Ch    WORD    offset in DOS DS of first filename argument
  3249. 27Eh    WORD    offset in DOS DS of second filename argument
  3250. 280h    WORD    offset of last component in pathname or FFFFh
  3251. 282h    WORD    offset of transfer address to add
  3252. 284h    WORD    last relative cluster within file being accessed
  3253. 286h    WORD    temp: absolute cluster number being accessed
  3254. 288h    WORD    directory sector number
  3255. 28Ah    WORD    ??? current cluster number
  3256. 28Ch    WORD    current relative sector number within file
  3257. 28Eh    WORD    current sector number
  3258. 290h    WORD    current byte offset within sector
  3259. 292h    DWORD    current offset in file
  3260. 296h    DWORD    temp: file byte count
  3261. 29Ah    WORD    temp: file byte count
  3262. 29Ch    WORD    free file cluster entry
  3263. 29Eh    WORD    last file cluster entry
  3264. 2A0h    WORD    next file cluster number
  3265. 2A2h    DWORD    number of bytes appended to file
  3266. 2A6h    DWORD    pointer to current work disk buffer
  3267. 2AAh    DWORD    pointer to working SFT
  3268. 2AEh    WORD    used by INT 21 dispatcher to store caller's BX
  3269. 2B0h    WORD    used by INT 21 dispatcher to store caller's DS
  3270. 2B2h    WORD    temporary storage while saving/restoring caller's registers
  3271. 2B4h    DWORD    pointer to prev call frame (offset 250h) if INT 21 reentered
  3272.         also switched to for duration of INT 24
  3273. 2B8h 21 BYTEs    FindFirst search data for source file(s) of a rename operation
  3274.         (see #0723 at AH=4Eh)
  3275. 2CDh 32 BYTEs    directory entry for file being renamed (see #0475 at AH=11h)
  3276. 2EDh 331 BYTEs    critical error stack
  3277.    403h     35 BYTEs scratch SFT
  3278. 438h 384 BYTEs    disk stack (functions greater than 0Ch, INT 25,INT 26)
  3279. 5B8h 384 BYTEs    character I/O stack (functions 01h through 0Ch)
  3280. ---DOS 3.2,3.3x only---
  3281. 738h    BYTE    device driver lookahead flag (usually printer) (see AH=64h)
  3282. 739h    BYTE    volume change flag
  3283. 73Ah    BYTE    flag: virtual open
  3284. 73Bh    BYTE    ???
  3285. SeeAlso: #0779
  3286. --------D-215D07-----------------------------
  3287. INT 21 U - DOS 3.1+ network - GET REDIRECTED PRINTER MODE
  3288.     AX = 5D07h
  3289. Return: DL = mode
  3290.         00h redirected output is combined
  3291.         01h redirected output in separate print jobs
  3292. SeeAlso: AX=5D08h,AX=5D09h,INT 2F/AX=1125h
  3293. --------D-215D08-----------------------------
  3294. INT 21 U - DOS 3.1+ network - SET REDIRECTED PRINTER MODE
  3295.     AX = 5D08h
  3296.     DL = mode
  3297.         00h redirected output is combined
  3298.         01h redirected output placed in separate jobs, start new print job
  3299.         now
  3300. SeeAlso: AX=5D07h,AX=5D09h,INT 2F/AX=1125h
  3301. --------D-215D09-----------------------------
  3302. INT 21 U - DOS 3.1+ network - FLUSH REDIRECTED PRINTER OUTPUT
  3303.     AX = 5D09h
  3304. Notes:    forces redirected printer output to be printed, and starts a new print
  3305.       job
  3306.     this function is also supported by 10Net, which calls it Terminate All
  3307.       Spool Jobs, and does not flush if in "combine" mode
  3308. SeeAlso: AX=5D07h,AX=5D08h,INT 2F/AX=1125h
  3309. --------D-215D0A-----------------------------
  3310. INT 21 - DOS 3.1+ - SET EXTENDED ERROR INFORMATION
  3311.     AX = 5D0Ah
  3312.     DS:DX -> 11-word DOS parameter list (see #0776)
  3313. Return: nothing.  next call to AH=59h will return values from fields AX,BX,CX,
  3314.       DX,DI, and ES in corresponding registers
  3315. Notes:    documented for DOS 5+, but undocumented in earlier versions
  3316.     the MS-DOS Programmer's Reference incorrectly states that this call was
  3317.       introduced in DOS 4, and fails to mention that the ERROR structure
  3318.       passed to this function is a DOS parameter list.
  3319. BUG:    DR-DOS 3.41 and 5.0 read the value for ES from the DS field of the DPL;
  3320.       fortunately, MS-DOS ignores the DS field, allowing a generic routine
  3321.       which sets both DS and ES fields to the same value
  3322. SeeAlso: AH=59h/BX=0000h
  3323. --------D-215D0B-----------------------------
  3324. INT 21 OU - DOS 4.x only internal - GET DOS SWAPPABLE DATA AREAS
  3325.     AX = 5D0Bh
  3326. Return: CF set on error
  3327.         AX = error code (see #0770)
  3328.     CF clear if successful
  3329.         DS:SI -> swappable data area list (see #0778)
  3330. Notes:    copying and restoring the swappable data areas allows DOS to be
  3331.       reentered unless it is in a critical section delimited by calls to
  3332.       INT 2A/AH=80h and INT 2A/AH=81h,82h
  3333.     SHARE and other DOS utilities consult the byte at offset 04h in the
  3334.       DOS data segment (see INT 2F/AX=1203h) to determine the SDA format
  3335.       in use: 00h = DOS 3.x, 01h = DOS 4.0-6.0, other = error.
  3336.     DOS 5+ use the SDA format listed below, but revert back to the DOS 3.x
  3337.       call for finding the SDA (see #0777)
  3338. SeeAlso: AX=5D06h,INT 2A/AH=80h,INT 2A/AH=81h,INT 2A/AH=82h,INT 2F/AX=1203h
  3339.  
  3340. Format of DOS 4.x swappable data area list:
  3341. Offset    Size    Description    (Table 0778)
  3342.  00h    WORD    count of data areas
  3343.  02h  N BYTEs    "count" copies of data area record
  3344.         Offset    Size    Description
  3345.          00h    DWORD    address
  3346.          04h    WORD    length and type
  3347.                 bit 15 set if swap always, clear if swap in DOS
  3348.                 bits 14-0: length in bytes
  3349. SeeAlso: #0779
  3350.  
  3351. Format of DOS 4.0-6.0 swappable data area:
  3352. Offset    Size    Description    (Table 0779)
  3353.  -34    BYTE    printer echo flag (00h off, FFh active)
  3354.  -31    BYTE    current switch character (ignored by DOS 5+)
  3355.  -28    BYTE    incremented on each INT 21/AX=5E01h call
  3356.  -27 16 BYTEs    machine name set by INT 21/AX=5E01h
  3357.  -11  5 WORDs    zero-terminated list of offsets which need to be patched to
  3358.           enable critical-section calls (see INT 2A/AH=80h)
  3359.         (all offsets are 0D0Ch, but this list is still present for
  3360.           DOS 3.x compatibility)
  3361.  -1    BYTE    unused padding
  3362. ---start of actual SDA---
  3363.  00h    BYTE    critical error flag ("ErrorMode")
  3364.  01h    BYTE    InDOS flag (count of active INT 21 calls)
  3365.  02h    BYTE    drive on which current critical error occurred or FFh
  3366.  03h    BYTE    locus of last error
  3367.  04h    WORD    extended error code of last error
  3368.  06h    BYTE    suggested action for last error
  3369.  07h    BYTE    class of last error
  3370.  08h    DWORD    ES:DI pointer for last error
  3371.  0Ch    DWORD    current DTA
  3372.  10h    WORD    current PSP
  3373.  12h    WORD    stores SP across an INT 23
  3374.  14h    WORD    return code from last process termination (zerod after reading
  3375.           with AH=4Dh)
  3376.  16h    BYTE    current drive
  3377.  17h    BYTE    extended break flag
  3378.  18h    BYTE    flag: code page switching
  3379.  19h    BYTE    flag: copy of previous byte in case of INT 24 Abort
  3380. ---remainder need only be swapped if in DOS---
  3381.  1Ah    WORD    value of AX on call to INT 21
  3382.  1Ch    WORD    PSP segment for sharing/network
  3383.  1Eh    WORD    network machine number for sharing/network (0000h = us)
  3384.  20h    WORD    first usable memory block found when allocating memory
  3385.  22h    WORD    best usable memory block found when allocating memory
  3386.  24h    WORD    last usable memory block found when allocating memory
  3387.  26h    WORD    memory size in paragraphs (used only during initialization)
  3388.  28h    WORD    last entry checked during directory search
  3389.  2Ah    BYTE    flag: nonzero if INT 24 Fail
  3390.  2Bh    BYTE    flags: allowable INT 24 responses (passed to INT 24 in AH)
  3391.  2Ch    BYTE    flag: do not set directory if nonzero
  3392.  2Dh    BYTE    flag: program aborted by ^C
  3393.  2Eh    BYTE    flag: allow embedded blanks in FCB
  3394.         may also allow use of "*" wildcard in FCBs
  3395.  2Fh    BYTE    padding (unused)
  3396.  30h    BYTE    day of month
  3397.  31h    BYTE    month
  3398.  32h    WORD    year - 1980
  3399.  34h    WORD    number of days since 1-1-1980
  3400.  36h    BYTE    day of week (0 = Sunday)
  3401.  37h    BYTE    flag: console swapped during read from device
  3402.  38h    BYTE    flag: safe to call INT 28 if nonzero
  3403.  39h    BYTE    flag: abort currently in progress, turn INT 24 Abort into Fail
  3404.  3Ah 30 BYTEs    device driver request header (see INT 2F/AX=0802h) for
  3405.           device calls
  3406.  58h    DWORD    pointer to device driver entry point (used in calling driver)
  3407.  5Ch 22 BYTEs    device driver request header for I/O calls
  3408.  72h 14 BYTEs    device driver request header for disk status check
  3409.  80h    DWORD    pointer to device I/O buffer
  3410.  84h    WORD    ???
  3411.  86h    WORD    ??? (0)
  3412.  88h    BYTE    type of PSP copy (00h=simple for INT 21/AH=26h, FFh=make child)
  3413.  89h    DWORD    start offset of file region to lock/unlock
  3414.  8Dh    DWORD    length of file region to lock/unlock
  3415.  91h    BYTE    padding (unused)
  3416.  92h  3 BYTEs    24-bit user number (see AH=30h)
  3417.  95h    BYTE    OEM number (see #0513 at AH=30h)
  3418.  96h  6 BYTEs    CLOCK$ transfer record (see #0745 at AH=52h)
  3419.  9Ch    BYTE    device I/O buffer for single-byte I/O functions
  3420.  9Dh    BYTE    padding???
  3421.  9Eh 128 BYTEs    buffer for filename
  3422. 11Eh 128 BYTEs    buffer for filename
  3423. 19Eh 21 BYTEs    findfirst/findnext search data block (see #0723 at AH=4Eh)
  3424. 1B3h 32 BYTEs    directory entry for found file (see #0513 at AH=11h)
  3425. 1D3h 88 BYTEs    copy of current directory structure for drive being accessed
  3426. 22Bh 11 BYTEs    FCB-format filename for device name comparison
  3427. 236h    BYTE    terminating NUL for above filename
  3428. 237h 11 BYTEs    wildcard destination specification for rename (FCB format)
  3429. 242h    BYTE    terminating NUL for above filespec
  3430. 243h    BYTE    ???
  3431. 244h    WORD    ???
  3432. 246h  5 BYTEs    ???
  3433. 24Bh    BYTE    extended FCB file attributes
  3434. 24Ch    BYTE    type of FCB (00h regular, FFh extended)
  3435. 24Dh    BYTE    directory search attributes
  3436. 24Eh    BYTE    file open/access mode
  3437. 24Fh    BYTE    ??? flag bits
  3438.         reportedly 00h when deleting a file under MSDOS 5.0
  3439. 250h    BYTE    flag: device name found on rename, or file not found
  3440. 251h    BYTE    splice flag??? (file name and directory name together)
  3441. 252h    BYTE    flag indicating how DOS function was invoked
  3442.         (00h = direct INT 20/INT 21, FFh = server call AX=5D00h)
  3443. 253h    BYTE    sector position within cluster
  3444. 254h    BYTE    ??? (flag: translate sector/cluster)
  3445. 255h    BYTE    ??? (flag: 00h if read, 01h if write)
  3446. 256h    BYTE    current working drive number
  3447. 257h    BYTE    cluster factor
  3448. 258h    BYTE    ???
  3449. 259h    BYTE    line edit (AH=0Ah) insert mode flag (nonzero = on)
  3450. 25Ah    BYTE    canonicalized filename referred to existing file/dir if FFh
  3451. 25Bh    BYTE    volume ID flag
  3452. 25Ch    BYTE    type of process termination (00h-03h) (see AH=4Dh)
  3453. 25Dh    BYTE    ???
  3454. 25Eh    BYTE    ??? file create flag (00h = no, search only)
  3455. 25Fh    BYTE    ??? (value for deleted file's first byte)
  3456. 260h    DWORD    pointer to Drive Parameter Block for critical error invocation
  3457. 264h    DWORD    pointer to stack frame containing user registers on INT 21
  3458. 268h    WORD    stores SP across INT 24
  3459. 26Ah    DWORD    pointer to DOS Drive Parameter Block for ???
  3460. 26Eh    WORD    segment of disk buffer
  3461. 270h    WORD    ??? (saving partial cluster number)
  3462. 272h    WORD    ??? (temp: sector of work current cluster)
  3463. 274h    WORD    ??? (high part of cluster number)
  3464. 276h    WORD    ??? (temp)
  3465. 278h    BYTE    Media ID byte returned by AH=1Bh,1Ch
  3466. 279h    BYTE    ??? (doesn't seem to be referenced)
  3467. 27Ah    DWORD    pointer to device header if filename is character device
  3468. 27Eh    DWORD    pointer to current SFT
  3469. 282h    DWORD    pointer to current directory structure for drive being accessed
  3470. 286h    DWORD    pointer to caller's FCB
  3471. 28Ah    WORD    SFT index to which file being opened will refer
  3472. 28Ch    WORD    temporary storage for file handle
  3473. 28Eh    DWORD    pointer to a JFT entry in process handle table
  3474.           (see #0498 at AH=26h)
  3475. 292h    WORD    offset in DOS DS of first filename argument
  3476. 294h    WORD    offset in DOS DS of second filename argument
  3477. 296h    WORD    ??? (offset of last component in pathname or FFFFh)
  3478. 298h    WORD    offset of transfer address to add
  3479. 29Ah    WORD    last relative cluster within file being accessed
  3480. 29Ch    WORD    temp: absolute cluster number being accessed
  3481. 29Eh    WORD    directory sector number
  3482. 2A0h    WORD    ???
  3483. 2A2h    WORD    ??? directory cluster number
  3484. 2A4h    DWORD    current relative sector number within file
  3485. 2A8h    DWORD    ??? (current sector number)
  3486. 2ACh    WORD    ??? (current byte offset within sector)
  3487. 2AEh    DWORD    current offset in file
  3488. 2B2h    WORD    ???
  3489. 2B4h    WORD    bytes in partial sector
  3490. 2B6h    WORD    number of sectors
  3491. 2B8h    WORD    ??? (free file cluster entry)
  3492. 2BAh    WORD    ??? (last file cluster entry)
  3493. 2BCh    WORD    ??? (next file cluster number)
  3494. 2BEh    DWORD    number of bytes appended to file
  3495. 2C2h    DWORD    pointer to current work disk buffer
  3496. 2C6h    DWORD    pointer to working SFT
  3497. 2CAh    WORD    used by INT 21 dispatcher to store caller's BX
  3498. 2CCh    WORD    used by INT 21 dispatcher to store caller's DS
  3499. 2CEh    WORD    temporary storage while saving/restoring caller's registers
  3500. 2D0h    DWORD    pointer to prev call frame (offset 264h) if INT 21 reentered
  3501.         also switched to for duration of INT 24
  3502. 2D4h    WORD    open mode/action for INT 21/AX=6C00h
  3503. 2D6h    BYTE    ??? (set to 00h by INT 21h dispatcher, 02h when a read is
  3504.           performed, and 01h or 03h by INT 21/AX=6C00h)
  3505. 2D7h    WORD    ??? apparently unused
  3506. 2D9h    DWORD    stored ES:DI for AX=6C00h
  3507. 2DDh    WORD    extended file open action code (see #0850 at AX=6C00h)
  3508. 2DFh    WORD    extended file open attributes (see #0849 at AX=6C00h)
  3509. 2E1h    WORD    extended file open file mode (see AX=6C00h)
  3510. 2E3h    DWORD    pointer to filename to open (see AX=6C00h)
  3511. 2E7h    WORD    ??? temp DX storage or 0000h or temp data buffer size from
  3512.           disk buffer
  3513. 2E9h    WORD    ???
  3514. 2EBh    BYTE    ???
  3515. 2ECh    WORD    stores DS during call to [List-of-Lists + 37h]
  3516. 2EEh    WORD    ???
  3517. 2F0h    BYTE    ???
  3518. 2F1h    WORD    ??? bit flags
  3519. 2F3h    DWORD    pointer to user-supplied filename
  3520. 2F7h    DWORD    pointer to ???
  3521. 2FBh    WORD    stores SS during call to [List-of-Lists + 37h]
  3522. 2FDh    WORD    stores SP during call to [List-of-Lists + 37h]
  3523. 2FFh    BYTE    flag, nonzero if stack switched in calling [List-of-Lists+37h]
  3524. 300h 21 BYTEs    FindFirst search data for source file(s) of a rename operation
  3525.         (see #0723 at AH=4Eh)
  3526. 315h 32 BYTEs    directory entry for file being renamed (see #0475 at AH=11h)
  3527. 335h 331 BYTEs    critical error stack
  3528. 480h 384 BYTEs    disk stack (functions greater than 0Ch, INT 25,INT 26)
  3529. 600h 384 BYTEs    character I/O stack (functions 01h through 0Ch)
  3530. 780h    BYTE    device driver lookahead flag (usually printer) (see AH=64h)
  3531. 781h    BYTE    volume change flag
  3532. 782h    BYTE    flag: virtual open
  3533. 783h    BYTE    ???
  3534. 784h    WORD    ???
  3535. 786h    WORD    ???
  3536. 788h    WORD    ???
  3537. 78Ah    WORD    ???
  3538. SeeAlso: #0777,#0778
  3539. --------D-215E00-----------------------------
  3540. INT 21 - DOS 3.1+ network - GET MACHINE NAME
  3541.     AX = 5E00h
  3542.     DS:DX -> 16-byte buffer for ASCIZ machine name
  3543. Return: CF clear if successful
  3544.         CH = validity
  3545.         00h name invalid
  3546.         nonzero valid
  3547.             CL = NetBIOS number for machine name
  3548.             DS:DX buffer filled with blank-paded name
  3549.     CF set on error
  3550.         AX = error code (01h) (see #0770 at AH=59h)
  3551. Note:    supported by OS/2 v1.3+ compatibility box, PC-NFS
  3552. SeeAlso: AX=5E01h
  3553. --------N-215E00-----------------------------
  3554. INT 21 - 10NET v5.0 - GET MACHINE NAME
  3555.     AX = 5E00h
  3556. Return: CL = redirector's NetBIOS name number
  3557.     ES:DI -> network node ID
  3558. SeeAlso: AX=5E01h"10NET"
  3559. --------D-215E01CH00-------------------------
  3560. INT 21 - DOS 3.1+ network - SET MACHINE NAME
  3561.     AX = 5E01h
  3562.     CH = 00h undefine name (make it invalid)
  3563.        <> 0     define name
  3564.     CL = name number
  3565.     DS:DX -> 15-character blank-padded ASCIZ name
  3566. SeeAlso: AX=5E00h
  3567. --------N-215E01-----------------------------
  3568. INT 21 - 10NET v5.0 - GET LOCAL 10NET CONFIGURATION TABLE
  3569.     AX = 5E01h
  3570.     CX = length of buffer
  3571.     DS:DX -> buffer for 10Net configuration table
  3572. SeeAlso: AX=5E00h"10NET",INT 6F/AH=02h,INT 6F/AH=03h
  3573.  
  3574. Format of 10Net Configuration Table:
  3575. Offset    Size    Description    (Table 0780)
  3576.  00h  8 BYTEs    user name
  3577.  08h 15 BYTEs    node ID
  3578.  17h  3 BYTEs    unique portion of Ethernet address
  3579.  1Ah    BYTE    Who group number
  3580.  1Bh    WORD    services mask (see #0782)
  3581.  1Dh    DWORD    serial number
  3582.  21h    BYTE    maximum concurrent users with same serial number allowed on net
  3583.  22h    BYTE    chat mask (see #0783)
  3584.  23h    BYTE    internal system bits (see #0784)
  3585.  24h  9 BYTEs    version number in format MM.mm.xxx
  3586.  2Dh    BYTE    flag: 01h if machine is a PS/2
  3587.  2Eh    BYTE    flag: 03h if 80386
  3588.  2Fh    BYTE    spool termination mode: 01h concatenate, 02h truncate
  3589.         (see AX=5D09h)
  3590.  30h    WORD    autospool timeout in clock ticks
  3591.  32h    WORD    monitor timeout in clock ticks
  3592.  34h    WORD    unused
  3593.  36h    WORD    chat timeout in clock ticks
  3594.  38h    WORD    netBIOS session timeout in half-seconds
  3595.  3Ah    WORD    datagram send timeout in seconds
  3596.  3Ch    WORD    keyboard value for initiating chat mode
  3597.  3Eh    WORD    Who timeout in clock ticks
  3598.  40h    BYTE    flag: 01h if server should process rom NetBIOS Post return
  3599.  41h    BYTE    flag: 01h if FCBs should be recycled
  3600.  42h  3 BYTEs    signature "DBG"
  3601.  45h    BYTE    last interrupt (21h or 6Fh)
  3602.  46h    BYTE    last INT 21 AH value
  3603.  47h    BYTE    last INT 6F AH value
  3604.  48h    WORD    last item posted
  3605.  4Ah    WORD    last item free-posted
  3606.  4Ch    WORD    last item handled by server
  3607.  4Eh    WORD    last redirector send NCB
  3608.  50h    WORD    last redirector receive NCB
  3609.  52h  4 BYTEs    signature "TABL"
  3610.  56h    WORD    offset of datagram buffer table header
  3611.  58h    WORD    offset of chat buffer table header
  3612.  5Ah    WORD    offset of Raw buffer table header
  3613.  5Ch    WORD    offset of Workstation buffer table header
  3614.  5Eh    WORD    offset of server receive-any table header
  3615.  60h    WORD    offset of Tiny buffer table header
  3616.  62h    WORD    offset of zero-length buffer table (NCBs)
  3617.  64h    WORD    offset of Rdr (Redirector Mount) table header
  3618.  66h    WORD    offset of Ntab (Redirector Session) table header
  3619.  68h    WORD    offset of FCB table header
  3620.  6Ah    WORD    offset of user file handle table header
  3621.  6Ch    WORD    offset of workstation printer RDR extension table header
  3622.  6Eh    WORD    offset of server shared device table header
  3623.  70h    WORD    offset of server connection table header
  3624.  72h    WORD    offset of server login table header
  3625.  74h    WORD    offset of server file table header
  3626.  76h    WORD    offset of server shared file table header
  3627.  78h    WORD    offset of server record lock table header
  3628.  7Ah    WORD    offset of remote printer claim table header
  3629.  7Ch    WORD    offset of remote printer device table header
  3630.  7Eh    WORD    offset of print server mount table header
  3631.  80h    WORD    offset of print server sessions table header
  3632.  82h    WORD    offset of print server print job structure table header
  3633.  84h    WORD    offset of print server pooled device table header
  3634.  86h    WORD    size of workstation buffer
  3635.  88h    WORD    size of server receive-any buffer
  3636.  8Ah    WORD    size of server raw I/O buffer
  3637.  8Ch  6 BYTEs    reserved
  3638.  92h    DWORD    pointer to profile pathname
  3639.  96h    BYTE    datagram retry count
  3640.  97h    BYTE    NetBIOS LAN adapter number
  3641.  98h  6 BYTEs    physical Ethernet address
  3642.  9Eh    BYTE    NetBIOS server name number
  3643.  9Fh    BYTE    NetBIOS redirector name number
  3644.  A0h    BYTE    10Net interrupt number
  3645.  A1h    BYTE    flag: chat is loaded
  3646.  A2h    BYTE    flag: INT 6F APIs permanently loaded
  3647.  A3h    BYTE    flag: file security present
  3648.  A4h    WORD    reserved
  3649.  A6h    BYTE    fixed mount bitmask for drives A:-H:
  3650.  A7h    BYTE    reserved
  3651.  A8h    WORD    10Net system flags (see #0785)
  3652.  AAh    BYTE    monitor flags (see #0786)
  3653.  ABh  5 BYTEs    reserved
  3654.  B0h    WORD    offset of monitor timer block
  3655.  B2h    WORD    offset of server timer block
  3656.  B4h    WORD    offset of chat timer block
  3657.  B6h    WORD    timer chain
  3658.  B8h  4 BYTEs    signature "TALS"
  3659.  BCh    WORD    number of 10Net sends
  3660.  BEh    WORD    number of 10Net receives
  3661.  C0h    WORD    number of no-buffer conditions
  3662.  C2h    WORD    number of dropped posted messages
  3663.  C4h    WORD    number of server NCB errors
  3664.  C6h    WORD    number of redirector NCB errors
  3665.  C8h    WORD    number of datagram send/receive errors
  3666.  CAh    WORD    number of dropped Whos
  3667.  CCh    WORD    number of dropped submits
  3668.  CEh    WORD    number of session aborts
  3669.  D0h    BYTE    number of NetBIOS interface-busy errors
  3670.  D1h    BYTE    last NetBIOS bad post command
  3671.  D2h    BYTE    last NetBIOS bad redirector command
  3672.  D3h    BYTE    do send datagram send/receive error command
  3673.  D4h    DWORD    -> DOS system parameter table
  3674.  D8h    WORD    number of DOS physical drives
  3675.  DAh    WORD    offset of DOS PSP field in DOS data segment
  3676.  DCh    WORD    offset of in-DOS flag in DOS data segment
  3677.  DEh    WORD    DOS data segment
  3678.  E0h    WORD    offset of DOS SFT in DOS data segment
  3679.  E2h    WORD    offset of number-of-physical-units field in DOS data segment
  3680.  E4h    WORD    10Net code segment
  3681.  E6h    WORD    10Net data segment
  3682.  E8h    WORD    10Net common server segment
  3683.  EAh    WORD    10Net file server segment
  3684.  ECh    WORD    10Net print server segment
  3685.  EEh    WORD    10Net remote printer segment
  3686. Note:    documentation lists field at offset D0h as a WORD, but all following
  3687.       offsets are as though it were a BYTE; if it is indeed a WORD, all
  3688.       offsets after D0h must be increased by one byte
  3689.  
  3690. Format of 10Net Table Header:
  3691. Offset    Size    Description    (Table 0781)
  3692.  -16  4 BYTEs    table identifier
  3693.  -12    WORD    peak number of tables allocated
  3694.  -10    WORD    number of tables currently in use
  3695.  -8    WORD    total number of tables
  3696.  -6    WORD    size of each table
  3697.  -4    WORD    offset of first allocated table
  3698.  -2    WORD    offset of first free table
  3699.  
  3700. Bitfields for 10NET services mask:
  3701. Bit(s)    Description    (Table 0782)
  3702.  0    workstation
  3703.  1    file server
  3704.  2    print queue server
  3705.  3    de-spool server
  3706.  
  3707. Bitfields for 10NET chat mask:
  3708. Bit(s)    Description    (Table 0783)
  3709.  0    chat permitted
  3710.  1    bell enabled
  3711.  2    chat keyboard initiated
  3712.  3    in INT 16 handler
  3713.  4    in Get Input
  3714.  5    display has timed out
  3715.  6    chat is idle
  3716.  
  3717. Bitfields for 10NET internal system bits:
  3718. Bit(s)    Description    (Table 0784)
  3719.  0    submit permitted
  3720.  1    submit initiated
  3721.  2    submit executing
  3722.  3    internal client call/chat/spool/autospool
  3723.  4    in spool termination
  3724.  5    print permitted
  3725.  6    waiting for keyboard input
  3726.  
  3727. Bitfields for 10NET System Flags:
  3728. Bit(s)    Description    (Table 0785)
  3729.  0    in NetBIOS
  3730.  1    processing INT 28
  3731.  2    is server
  3732.  3    in net user-DOS function
  3733.  4    in DOS user-DOS function
  3734.  5    in net for user non-DOS function
  3735.  6    in server DOS function
  3736.  7    in server non-DOS function
  3737.  8    in terminate
  3738.  10    in user on server request
  3739.  13    in DOS for user on server
  3740.  14    disable critical error handler
  3741.  
  3742. Bitfields for Monitor Flags:
  3743. Bit(s)    Description    (Table 0786)
  3744.  0    waiting for monitor response
  3745.  4    in monitor get-input routine
  3746.  5    monitor display timeout
  3747.  6    sensing for escape key
  3748. --------D-215E02-----------------------------
  3749. INT 21 - DOS 3.1+ network - SET NETWORK PRINTER SETUP STRING
  3750.     AX = 5E02h
  3751.     BX = redirection list index (see AX=5F02h)
  3752.     CX = length of setup string
  3753.     DS:SI -> setup string
  3754. Return: CF clear if successful
  3755.     CF set on error
  3756.         AX = error code (01h) (see #0770 at AH=59h)
  3757. Note:    also supported by 10NET v5.0
  3758. SeeAlso: AX=5E03h,INT 2F/AX=111Fh
  3759. --------D-215E03-----------------------------
  3760. INT 21 - DOS 3.1+ network - GET NETWORK PRINTER SETUP STRING
  3761.     AX = 5E03h
  3762.     BX = redirection list index (see AX=5F02h)
  3763.     ES:DI -> 64-byte buffer for setup string
  3764. Return: CF clear if successful
  3765.         CX = length of setup string
  3766.         ES:DI buffer filled
  3767.     CF set on error
  3768.         AX = error code (01h) (see #0770 at AH=59h)
  3769. Note:    also supported by 10NET v5.0, but 10NET is documented as using DS:SI
  3770.       instead of ES:DI
  3771. SeeAlso: AX=5E02h,INT 2F/AX=111Fh
  3772. --------D-215E04-----------------------------
  3773. INT 21 - DOS 3.1+ network - SET PRINTER MODE
  3774.     AX = 5E04h
  3775.     BX = redirection list index (see AX=5F02h)
  3776.     DX = mode
  3777.         bit 0: set if binary, clear if text (tabs expanded to blanks)
  3778. Return: CF set on error
  3779.         AX = error code (see #0770 at AH=59h)
  3780.     CF clear if successful
  3781. Note:    calls INT 2F/AX=111Fh with 5E04h on stack
  3782. SeeAlso: AX=5E05h"DOS",INT 2F/AX=111Fh
  3783. --------N-215E04-----------------------------
  3784. INT 21 - 10NET v5.0 - INITIATE PRINT JOB
  3785.     AX = 5E04h
  3786.     BX = zero-based redirection list index (see AX=5F02h)
  3787.     DS:DX -> extended workstation printer setup structure (see #0787)
  3788. Return: CF clear if successful
  3789.     CF set on error
  3790.         AX = error code (see #0770 at AH=59h)
  3791. SeeAlso: AX=5E05h"10NET",AX=5E06h"10NET"
  3792.  
  3793. Format of 10NET extended workstation printer setup structure:
  3794. Offset    Size    Description    (Table 0787)
  3795.  00h    BYTE    notification flags (see #0788)
  3796.  01h    BYTE    job control mask (see #0789)
  3797.  02h    WORD    days to retain file
  3798.  04h    WORD    test print length
  3799.  06h    BYTE    number of copies to print
  3800.  07h    BYTE    compression algorithm
  3801.  08h    BYTE    tab width (00h = don't expand)
  3802.  09h    BYTE    initiation type (00h normal, 01h non-spooled)
  3803.  0Ah 38 BYTEs    job start operation notification instructions
  3804.  30h 32 BYTEs    comment for job
  3805.  50h 64 BYTEs    output filename or non-spooled file
  3806.  
  3807. Bitfields for 10NET notification flags:
  3808. Bit(s)    Description    (Table 0788)
  3809.  0    user at print start
  3810.  1    operator at start, with reply
  3811.  2    user at print completion
  3812.  3    operator at completion, with reply
  3813.  4    user on queue switch
  3814.  5    operator on queue switch, with reply
  3815.  6    user on print error
  3816.  
  3817. Bitfields for 10NET job control mask:
  3818. Bit(s)    Description    (Table 0789)
  3819.  0    print banner page
  3820.  1    eject page at end of job
  3821.  2    mark as "held" (queue but don't print)
  3822.  3    rush job (queue at top)
  3823.  4    overwrite file with zeros before deletion
  3824.  5    hyperspool if possible
  3825. --------D-215E05-----------------------------
  3826. INT 21 - DOS 3.1+ network - GET PRINTER MODE
  3827.     AX = 5E05h
  3828.     BX = redirection list index (see AX=5F02h)
  3829. Return: CF set on error
  3830.         AX = error code (see #0770 at AH=59h)
  3831.     CF clear if successful
  3832.         DX = printer mode (see AX=5E04h)
  3833. Note:    calls INT 2F/AX=111Fh with 5E05h on stack
  3834. SeeAlso: AX=5E04h"DOS",INT 2F/AX=111Fh
  3835. --------N-215E05-----------------------------
  3836. INT 21 - 10NET v5.0 - TERMINATE PRINT JOB
  3837.     AX = 5E05h
  3838.     BX = zero-based redirection list index (see AX=5F02h)
  3839. Return: CF clear if successful
  3840.     CF set on error
  3841.         AX = error code (see #0770 at AH=59h)
  3842. Note:    this call resets the spool termination mode to "truncate"
  3843.       (see AX=5D08h)
  3844. SeeAlso: AX=5E04h"10NET",AX=5E06h
  3845. --------N-215E06-----------------------------
  3846. INT 21 - 10NET v5.0 - GET/SET 10NET WORKSTATION PRINTER SETUP STRUCTURE
  3847.     AX = 5E06h
  3848.     BX = zero-based redirection list index (see AX=5F02h)
  3849.     CX = operation (06h set, 07h get)
  3850.     DS:DX -> buffer for setup structure (same as first nine bytes of
  3851.           workstation printer setup) (see #0787)
  3852. Return: CF clear if successful
  3853.         DS:DX buffer updated on get
  3854.     CF set on error
  3855.         AX = error code (see #0770 at AH=59h)
  3856. SeeAlso: AX=5E04h"10NET",AX=5E05h"10NET"
  3857. --------D-215F00-----------------------------
  3858. INT 21 - DOS 3.1+ network - GET REDIRECTION MODE
  3859.     AX = 5F00h
  3860.     BL = redirection type
  3861.         03h printer
  3862.         04h disk drive
  3863. Return: CF set on error
  3864.         AX = error code (see #0770 at AH=59h)
  3865.     CF clear if successful
  3866.         BH = redirection state
  3867.         00h off
  3868.         01h on
  3869. Note:    calls INT 2F/AX=111Eh with AX on top of the stack
  3870. SeeAlso: AX=5F01h,INT 2F/AX=111Eh
  3871. --------D-215F01-----------------------------
  3872. INT 21 - DOS 3.1+ network - SET REDIRECTION MODE
  3873.     AX = 5F01h
  3874.     BL = redirection type
  3875.         03h printer
  3876.         04h disk drive
  3877.     BH = redirection state
  3878.         00h off
  3879.         01h on
  3880. Return: CF set on error
  3881.         AX = error code (see #0770 at AH=59h)
  3882.     CF clear if successful
  3883. Notes:    when redirection is off, the local device (if any) rather than the
  3884.       remote device is used
  3885.     calls INT 2F/AX=111Eh with AX on top of the stack
  3886. SeeAlso: AX=5F00h,INT 2F/AX=111Eh
  3887. --------D-215F02-----------------------------
  3888. INT 21 - DOS 3.1+ network - GET REDIRECTION LIST ENTRY
  3889.     AX = 5F02h
  3890.     BX = zero-based redirection list index
  3891.     CX = 0000h (LANtastic)
  3892.     DS:SI -> 16-byte buffer for ASCIZ local device name
  3893.     ES:DI -> 128-byte buffer for ASCIZ network name
  3894. Return: CF clear if successful
  3895.         BH = device status
  3896.         00h valid
  3897.         01h invalid
  3898.         BL = device type
  3899.         03h printer
  3900.         04h disk drive
  3901.         CX = user data previously set with AX=5F03h
  3902.         DS:SI and ES:DI buffers filled
  3903.         DX,BP destroyed
  3904.     CF set on error
  3905.         AX = error code (01h,12h) (see #0770 at AH=59h)
  3906. Notes:    this function is passed through to INT 2F/AX=111Eh by the DOS kernel
  3907.     error code 12h is returned if BX is greater than the size of the list
  3908.     also supported by Banyan VINES, PC-NFS, LANtastic, and 10NET
  3909. SeeAlso: AX=5F03h,INT 2F/AX=111Eh
  3910. --------D-215F03-----------------------------
  3911. INT 21 - DOS 3.1+ network - REDIRECT DEVICE
  3912.     AX = 5F03h
  3913.     BL = device type
  3914.         03h printer
  3915.         04h disk drive
  3916.     CX = user data to save
  3917.         0000h for LANtastic
  3918.         4E57h ("NW") for NetWare 4.0 requester
  3919.     DS:SI -> ASCIZ local device name (16 bytes max)
  3920.     ES:DI -> ASCIZ network name + ASCIZ password (128 bytes max total)
  3921. Return: CF clear if successful
  3922.     CF set on error
  3923.         AX = error code (01h,03h,05h,08h,0Fh,12h) (see #0770 at AH=59h)
  3924. Notes:    if device type is disk drive, DS:SI must point at either a null string
  3925.       or a string consisting the drive letter followed by a colon; if a
  3926.       null string, the network attempts to access the destination without
  3927.       redirecting a local drive
  3928.     the DOS kernel calls INT 2F/AX=111Eh with AX on top of the stack
  3929.     also supported by Banyan VINES, LANtastic, and 10NET
  3930. SeeAlso: AX=5F02h,AX=5F04h,INT 2F/AX=111Eh
  3931. --------D-215F04-----------------------------
  3932. INT 21 - DOS 3.1+ network - CANCEL REDIRECTION
  3933.     AX = 5F04h
  3934.     DS:SI -> ASCIZ local device name or path
  3935.     CX = 4E57h ("NW") for NetWare 4.0 requester
  3936. Return: CF clear if successful
  3937.     CF set on error
  3938.         AX = error code (01h,03h,05h,08h,0Fh,12h) (see #0770 at AH=59h)
  3939. Notes:    the DS:SI string must be either a local device name, a drive letter
  3940.       followed by a colon, or a network directory beginning with two
  3941.       backslashes
  3942.     the DOS kernel calls INT 2F/AX=111Eh with AX on top of the stack
  3943.     also supported by Banyan VINES, LANtastic, and 10NET
  3944. SeeAlso: AX=5F03h,INT 2F/AX=111Eh
  3945. --------D-215F05-----------------------------
  3946. INT 21 - DOS 4+ network - GET EXTENDED REDIRECTION LIST ENTRY
  3947.     AX = 5F05h
  3948.     BX = redirection list index
  3949.     DS:SI -> buffer for ASCIZ source device name
  3950.     ES:DI -> buffer for destination ASCIZ network path
  3951. Return: CF set on error
  3952.         AX = error code (see #0770 at AH=59h)
  3953.     CF clear if successful
  3954.         AX = server's network process ID handle (10NET)
  3955.         BH = device status flag (bit 0 clear if valid)
  3956.         BL = device type (03h if printer, 04h if drive)
  3957.         CX = stored parameter value (user data) from AX=5F03h
  3958.         BP = NETBIOS local session number
  3959.         DS:SI buffer filled
  3960.         ES:DI buffer filled
  3961. Notes:    the local session number allows sharing the redirector's session number
  3962.     if an error is caused on the NETBIOS LSN, the redirector may be unable
  3963.       to correctly recover from errors
  3964.     the DOS kernel calls INT 2F/AX=111Eh with AX on top of the stack
  3965.     supported by DR-DOS 5.0
  3966.     also supported by 10NET v5.0
  3967. SeeAlso: AX=5F06h"Network",INT 2F/AX=111Eh
  3968. --------O-215F05-----------------------------
  3969. INT 21 - STARLITE architecture - MAP LOCAL DRIVE LETTER TO REMOTE FILE SYSTEM
  3970.     AX = 5F05h
  3971.     DL = drive number (0=A:)
  3972.     DS:SI -> ASCIZ name of the object to map the drive to
  3973. Return: CF set on error
  3974.         AX = error code (see #0770 at AH=59h)
  3975.     CF clear if successful
  3976. SeeAlso: AX=5F06h"STARLITE"
  3977. --------N-215F06-----------------------------
  3978. INT 21 U - Network - GET FULL REDIRECTION LIST
  3979.     AX = 5F06h
  3980.     ???
  3981. Return: ???
  3982. Notes:    similar to AX=5F02h and AX=5F05h, but also returns redirections
  3983.       excluded from those calls for various reasons
  3984.     calls INT 2F/AX=111Eh with AX on top of the stack
  3985. SeeAlso: AX=5F05h"DOS",INT 2F/AX=111Eh
  3986. --------O-215F06-----------------------------
  3987. INT 21 - STARLITE architecture - UNMAP DRIVE LETTER
  3988.     AX = 5F06h
  3989.     DL = drive to be unmapped (0=A:)
  3990. Return: CF set on error
  3991.         AX = error code (see #0770 at AH=59h)
  3992.     CF clear if successful
  3993. SeeAlso: AX=5F05h"STARLITE"
  3994. --------D-215F07-----------------------------
  3995. INT 21 - DOS 5+ - ENABLE DRIVE
  3996.     AX = 5F07h
  3997.     DL = drive number (0=A:)
  3998. Return: CF clear if successful
  3999.     CF set on error
  4000.         AX = error code (0Fh) (see #0770 at AH=59h)
  4001. Notes:    simply sets the "valid" bit in the drive's CDS
  4002.     this function is not supported by Novell DOS 7
  4003. SeeAlso: AH=52h,AX=5F08h"DOS"
  4004. --------O-215F07-----------------------------
  4005. INT 21 - STARLITE architecture - MAKE NAMED OBJECT AVAILABLE ON NETWORK
  4006.     AX = 5F07h
  4007.     DS:SI -> ASCIZ name of object to offer to network
  4008.     ES:DI -> ASCIZ name under which object will be known on the network
  4009.         MUST begin with three slashes
  4010. Return: CF set on error
  4011.         AX = error code (see #0770 at AH=59h)
  4012.     CF clear if successful
  4013. SeeAlso: AX=5F08h"STARLITE"
  4014. --------D-215F08-----------------------------
  4015. INT 21 - DOS 5+ - DISABLE DRIVE
  4016.     AX = 5F08h
  4017.     DL = drive number (0=A:)
  4018. Return: CF clear if successful
  4019.     CF set on error
  4020.         AX = error code (0Fh) (see #0770 at AH=59h)
  4021. Notes:    simply clears the "valid" bit in the drive's CDS
  4022.     this function is not supported by Novell DOS 7
  4023. SeeAlso: AH=52h,AX=5F07h"DOS"
  4024. --------O-215F08-----------------------------
  4025. INT 21 - STARLITE architecture - REMOVE GLOBAL NETWORK NAME OF OBJECT
  4026.     AX = 5F08h
  4027.     DS:SI -> ASCIZ network name (not local name) of object to unshare
  4028. Return: CF set on error
  4029.         AX = error code (see #0770 at AH=59h)
  4030.     CF clear if successful
  4031. SeeAlso: AX=5F07h"STARLITE"
  4032. --------O-215F09-----------------------------
  4033. INT 21 - STARLITE architecture - BIND TO NETWORK DEVICE
  4034.     AX = 5F09h
  4035.     DS:DX -> ASCIZ name of the device driver to attach to
  4036. Return: CF set on error
  4037.         AX = error code (see #0770 at AH=59h)
  4038.     CF clear if successful
  4039. Note:    the STARLITE distributed file system can attach to multiple networks
  4040.       simultaneously
  4041. SeeAlso: AX=5F0Ah
  4042. --------O-215F0A-----------------------------
  4043. INT 21 - STARLITE architecture - DETACH FROM NETWORK DEVICE
  4044.     AX = 5F0Ah
  4045.     DS:DX -> ASCIZ name of device driver to detach from
  4046. Return: CF set on error
  4047.         AX = error code (see #0770 at AH=59h)
  4048.     CF clear if successful
  4049. SeeAlso: AX=5F09h
  4050. --------N-215F30-----------------------------
  4051. INT 21 U - LAN Manager Enhanced DOS - GET REDIRECTOR VERSION
  4052.     AX = 5F30h
  4053. Return: AX = version (AH=major,AL=minor)
  4054. --------N-215F32-----------------------------
  4055. INT 21 u - Named Pipes - LOCAL DosQNmPipeInfo
  4056.     AX = 5F32h
  4057.     BX = handle
  4058.     CX = size of _PIPEINFO structure
  4059.     DX = level (must be 0001h)
  4060.     DS:SI -> _PIPEINFO structure (see #0790)
  4061. Return: CF clear if successful
  4062.         _PIPEINFO structure filled in
  4063.     CF set on error
  4064.         AX = error code
  4065. Note:    this function was introduced by LAN Manager but is also supported by
  4066.       the Novell DOS Named Pipe Extender, Banyan VINES, OS/2 Virtual DOS
  4067.       Machines, and others
  4068. SeeAlso: AX=5F33h,AX=5F34h
  4069.  
  4070. Format of Named Pipes _PIPEINFO structure:
  4071. Offset    Size    Description    (Table 0790)
  4072.  00h    WORD    size of outgoing buffer
  4073.  02h    WORD    size of incoming buffer
  4074.  04h    BYTE    maximum number of instances allowed
  4075.  05h    BYTE    current number of instances
  4076.  06h    BYTE    length of the name (including terminating NUL)
  4077.  07h  N BYTEs    name
  4078. --------N-215F33-----------------------------
  4079. INT 21 u - Named Pipes - LOCAL DosQNmPHandState
  4080.     AX = 5F33h
  4081.     BX = handle
  4082. Return: CF clear if successful
  4083.         AH = pipe mode bit mask (see #0791)
  4084.         AL = maximum number of instances
  4085.     CF set on error
  4086.         AX = error code
  4087. Note:    this function was introduced by LAN Manager but is also supported by
  4088.       the Novell DOS Named Pipe Extender, Banyan VINES, OS/2 Virtual DOS
  4089.       Machines, and others
  4090. SeeAlso: AX=5F32h,AX=5F34h
  4091.  
  4092. Bitfields for Named Pipes pipe mode:
  4093. Bit(s)    Description    (Table 0791)
  4094.  7    set if nonblocking, clear if blocking
  4095.  6    set if server end, clear if client end
  4096.  2    set if write in message mode, clear if write in byte mode
  4097.  0    set if read in message mode, clear if read in byte mode
  4098. --------N-215F34-----------------------------
  4099. INT 21 u - Named Pipes - LOCAL DosSetNmPHandState
  4100.     AX = 5F34h
  4101.     BX = handle
  4102.     CX = pipe mode bit mask
  4103.         bit 15: set if nonblocking, clear if blocking
  4104.         bit     8: set if read in message mode, clear if read in byte mode
  4105. Return: CF clear if successful
  4106.     CF set if error
  4107.         AX = error code
  4108. Note:    this function was introduced by LAN Manager but is also supported by
  4109.       the Novell DOS Named Pipe Extender, Banyan VINES, OS/2 Virtual DOS
  4110.       Machines, and others
  4111. SeeAlso: AX=5F32h,AX=5F33h,AX=5F36h
  4112. --------N-215F35-----------------------------
  4113. INT 21 u - Named Pipes - LOCAL DosPeekNmPipe
  4114.     AX = 5F35h
  4115.     BX = handle
  4116.     CX = buffer length
  4117.     DS:SI -> buffer
  4118. Return:    CF set on error
  4119.         AX = error code
  4120.     CF clear if successful (LAN Manager v1-v2)
  4121.     AX = 0000h if successful (LAN Manager 3.x)
  4122.     ---if successful---
  4123.         CX = bytes read
  4124.         SI = bytes left in the pipe
  4125.         DX = bytes left in the current message
  4126.         AX = pipe status (v1-v2) (see #0792)
  4127.         DI = pipe status (v3.x)
  4128. Note:    this function was introduced by LAN Manager but is also supported by
  4129.       the Novell DOS Named Pipe Extender, Banyan VINES, OS/2 Virtual DOS
  4130.       Machines, and others
  4131. SeeAlso: AX=5F38h,AX=5F39h,AX=5F51h
  4132.  
  4133. (Table 0792)
  4134. Values for pipe status:
  4135.  0001h    disconnected
  4136.  0002h    listening
  4137.  0003h    connected
  4138.  0004h    closing
  4139. --------N-215F36-----------------------------
  4140. INT 21 u - Named Pipes - LOCAL DosTransactNmPipe
  4141.     AX = 5F36h
  4142.     BX = handle
  4143.     CX = in buffer length
  4144.     DS:SI -> in buffer
  4145.     DX = out buffer length
  4146.     ES:DI -> out buffer
  4147. Return: CF clear if successful
  4148.         CX = bytes read
  4149.     CF set on error
  4150.         AX = error code
  4151. Note:    this function was introduced by LAN Manager but is also supported by
  4152.       the Novell DOS Named Pipe Extender, Banyan VINES, OS/2 Virtual DOS
  4153.       Machines, and others
  4154. SeeAlso: AX=5F34h,AX=5F37h
  4155. --------N-215F37-----------------------------
  4156. INT 21 u - Named Pipes - DosCallNmPipe
  4157.     AX = 5F37h
  4158.     DS:SI -> DosCallNmPipe stack frame (see #0793)
  4159. Return: CF clear if successful
  4160.         CX = bytes read
  4161.     CF set on error
  4162.         AX = error code
  4163. Note:    this function was introduced by LAN Manager but is also supported by
  4164.       the Novell DOS Named Pipe Extender, Banyan VINES, OS/2 Virtual DOS
  4165.       Machines, and others
  4166. SeeAlso: AX=5F36h,AX=5F38h
  4167.  
  4168. Format of Named Pipes DosCallNmPipe stack frame:
  4169. Offset    Size    Description    (Table 0793)
  4170.  00h    DWORD    timeout
  4171.  04h    DWORD    -> bytes read WORD (not used!!)
  4172.  08h    WORD    out buffer length
  4173.  0Ah    DWORD    address of out buffer
  4174.  0Eh    WORD    in buffer length
  4175.  10h    DWORD    address of in buffer
  4176.  14h    DWORD    address of pipe name
  4177. --------N-215F38-----------------------------
  4178. INT 21 u - Named Pipes - LOCAL DosWaitNmPipe - AWAIT AVAIL. OF PIPE INSTANCE
  4179.     AX = 5F38h
  4180.     DS:DX -> pipe name
  4181.     BX:CX = timeout value
  4182. Return: CF clear if successful
  4183.     CF set if error
  4184.         AX = error code
  4185. Notes:    when a client gets a return code of ERROR_PIPE_BUSY on attempting to
  4186.       open a pipe, it should issue this call to wait until the pipe
  4187.       instance becomes available again; on return from this call, the
  4188.       client must attempt to open the pipe once again
  4189.     this function was introduced by LAN Manager but is also supported by
  4190.       the Novell DOS Named Pipe Extender, Banyan VINES, OS/2 Virtual DOS
  4191.       Machines, and others
  4192. SeeAlso: AX=5F37h,AX=5F39h
  4193. --------N-215F39-----------------------------
  4194. INT 21 U - Named Pipes - LOCAL DosRawReadNmPipe
  4195.     AX = 5F39h
  4196.     BX = handle
  4197.     CX = buffer length
  4198.     DS:DX -> buffer
  4199. Return: CF clear if successful
  4200.         CX = bytes read
  4201.     CF set if error
  4202.         AX = error code
  4203. Notes:    this function was introduced by LAN Manager but is also supported by
  4204.       the Novell DOS Named Pipe Extender, Banyan VINES, OS/2 Virtual DOS
  4205.       Machines, and others
  4206.     not documented in the LAN Manager Toolkit
  4207. SeeAlso: AX=5F35h,AX=5F3Ah,INT 2F/AX=1186h
  4208. --------N-215F3A-----------------------------
  4209. INT 21 U - Named Pipes - LOCAL DosRawWriteNmPipe
  4210.     AX = 5F3Ah
  4211.     BX = handle
  4212.     CX = buffer length
  4213.     DS:DX -> buffer
  4214. Return: CF clear if successful
  4215.         CX = bytes written
  4216.     CF set if error
  4217.         AX = error code
  4218. Notes:    this function was introduced by LAN Manager but is also supported by
  4219.       the Novell DOS Named Pipe Extender, Banyan VINES, OS/2 Virtual DOS
  4220.       Machines, and others
  4221.     not documented in the LAN Manager Toolkit
  4222. SeeAlso: AX=5F39h,AX=5F3Bh,INT 2F/AX=118Fh
  4223. --------N-215F3B-----------------------------
  4224. INT 21 u - LAN Manager Enhanced DOS - NetHandleSetInfo
  4225.     AX = 5F3Bh
  4226.     BX = handle
  4227.     CX = handle_info_1 structure length or sizeof DWORD
  4228.     DI = parameter number to set
  4229.         0000h all
  4230.         0001h number of milliseconds
  4231.         0002h number of characters
  4232.     DS:DX -> handle_info_1 structure (DI=0000h) (see #0794)
  4233.         or DWORD (DI=0001h or 0002h)
  4234.     SI = level of information (0001h)
  4235. Return: CF clear if successful
  4236.         CX = total bytes available
  4237.     CF set if error
  4238.         AX = error code
  4239. SeeAlso: AX=5F3Ch
  4240.  
  4241. Format of LAN Manager handle_info_1 structure:
  4242. Offset    Size    Description    (Table 0794)
  4243.  00h    DWORD    number of milliseconds which workstation collects data before
  4244.           it sends the data to the named pipe
  4245.  04h    DWORD    number of characters which workstation collects before it
  4246.           sends the data to the named pipe
  4247. --------N-215F3C-----------------------------
  4248. INT 21 u - LAN Manager Enhanced DOS - NetHandleGetInfo
  4249.     AX = 5F3Ch
  4250.     BX = handle
  4251.     CX = length of handle_info_1 structure
  4252.     DS:DX -> handle_info_1 structure (see #0794)
  4253.     SI = level of information (must be 0001h)
  4254. Return: CF clear if successful
  4255.         CX = total bytes available
  4256.     CF set if error
  4257.         AX = error code
  4258. SeeAlso: AX=5F3Bh
  4259. --------N-215F3D-----------------------------
  4260. INT 21 U - LAN Manager Enhanced DOS - WRITE MAILSLOT???
  4261.     AX = 5F3Dh
  4262.     ???
  4263. Return: ???
  4264. --------N-215F3E-----------------------------
  4265. INT 21 u - LAN Manager Enhanced DOS - LOCAL NetSpecialSMB
  4266.     AX = 5F3Eh
  4267.     ???
  4268. Return: ???
  4269. Note:    This function is not documented anywhere in the LAN Manager 2.x Toolkit
  4270.       but was documented in LAN Manager 1.x manuals.
  4271. --------N-215F3F-----------------------------
  4272. INT 21 U - LAN Manager Enhanced DOS - REMOTE API CALL
  4273.     AX = 5F3Fh
  4274.     CX = api number
  4275.     ES:DI -> data descriptor
  4276.     ES:SI -> parameter descriptor
  4277.     ES:DX -> auxiliary descriptor (if DX <> 0)
  4278.     ???
  4279. Return: ???
  4280. --------N-215F40-----------------------------
  4281. INT 21 u - LAN Manager Enhanced DOS - LOCAL NetMessageBufferSend
  4282.     AX = 5F40h
  4283.     DS:DX -> NetMessageBufferSend parameter structure (see #0795)
  4284. Return: AX = error code
  4285.  
  4286. Format of LAN Manager NetMessageBufferSend parameter structure:
  4287. Offset    Size    Description    (Table 0795)
  4288.  00h    DWORD    -> recipient name (name for specific user, name* for domain
  4289.               wide name, * for broadcast)
  4290.  04h    DWORD    -> buffer
  4291.  08h    WORD    length of buffer
  4292. --------N-215F41-----------------------------
  4293. INT 21 u - LAN Manager Enhanced DOS - LOCAL NetServiceEnum
  4294.     AX = 5F41h
  4295.     BL = level of detail (0000h, 0001h or 0002h)
  4296.     CX = buffer length
  4297.     ES:DI -> buffer of service_info_0, service_info_1, or service_info_2
  4298.         (see #0796,#0797,#0798)
  4299. Return: CF clear if successful
  4300.         CX = entries read
  4301.         DX = total available
  4302.     CF set on error
  4303.         AX = error code
  4304.  
  4305. Format of LAN Manager service_info_0 structure:
  4306. Offset    Size    Description    (Table 0796)
  4307.  00h 16 BYTEs    name
  4308. SeeAlso: #0797,#0798
  4309.  
  4310. Format of service_info_1 structure:
  4311. Offset    Size    Description    (Table 0797)
  4312.  00h 16 BYTEs    name
  4313.  10h    WORD    status bitmask (see #0799)
  4314.  12h    DWORD    status code (see #0800)
  4315.         (also see Microsoft LAN Manager Programmer's Reference)
  4316.  16h    WORD    process id
  4317. SeeAlso: #0796,#0798
  4318.  
  4319. Format of service_info_2 structure:
  4320. Offset    Size    Description    (Table 0798)
  4321.  00h 16 BYTEs    name
  4322.  10h    WORD    status bitmask (see #0799)
  4323.  12h    DWORD    status code (see #0800)
  4324.  16h    WORD    process id
  4325.  18h 64 BYTEs    text
  4326. SeeAlso: #0796,#0797
  4327.  
  4328. Bitfields for LAN Manager status bitmask:
  4329. Bit(s)    Description    (Table 0799)
  4330.  0,1    00 uninstall
  4331.         01 install pending
  4332.         10 uninstall pending
  4333.         11 installed
  4334.  2,3    00 active
  4335.         01 Continue pending
  4336.         10 Pause pending
  4337.         11 paused
  4338.  4    uninstallable
  4339.  5    pausable
  4340.  8    disk redirector paused
  4341.  9    spooled device redirector paused (printing)
  4342.  10    communication device redirector paused
  4343.  
  4344. (Table 0800)
  4345. Values for LAN Manager status code:
  4346.  high word
  4347.     3051 Bad parameter value
  4348.     3052 A parameter is missing
  4349.     3053 An unknown parameter was specified
  4350.     3054 The resource is insufficient
  4351.     3055 Configuration is faulty
  4352.     3056 An MS-DOS or MS OS/2 error occured
  4353.     3057 An internal error occured
  4354.     3058 An ambiguous parameter name was given
  4355.     3059 A duplicate parameter exists
  4356.     3060 The service was terminated by NetSeviceControl when it did not respond
  4357.     3061 The service program file could not be executed
  4358.     3062 The subservice failed to start
  4359.     3063 There is a conflict in the value or use of these parameters
  4360.     3064 There is a problem with the file
  4361.  low word
  4362.     3070 There is insufficient memory
  4363.     3071 There is insufficeient disk space
  4364.     3072 Unable to create thread
  4365.     3073 Unable to create process
  4366.     3074 A security failure occured
  4367.     3075 There is bad or missing default path
  4368.     3076 Network software is not installed
  4369.     3077 Server software is not installed
  4370.     3078 The server could not access the UAS database
  4371.     3079 The action requires user-level security
  4372.     3080 The log directory is invalid
  4373.     3081 The LAN group specificed could not be used
  4374.     3082 The computername is being used as a message alias on another computer
  4375.     3083 The workstation failed to announce the servername
  4376.     3084 The user accounts system is not configured properly
  4377. --------N-215F42-----------------------------
  4378. INT 21 u - LAN Manager Enhanced DOS - LOCAL NetServiceControl
  4379.     AX = 5F42h
  4380.     DH = opcode
  4381.         00h interrogate status
  4382.         01h pause
  4383.         02h continue
  4384.         03h uninstall
  4385.     DL = argument
  4386.         01h disk resource
  4387.         02h print resource
  4388.         04h communications resource (not implemented for DOS)
  4389.     ES:BX -> NetServiceControl parameter structure (see #0801)
  4390. Return: CF clear if successful
  4391.     CF set on error
  4392.         AX = error code
  4393.  
  4394. Format of LAN Manager NetServiceControl parameter structure:
  4395. Offset    Size    Description    (Table 0801)
  4396.  00h    DWORD    -> service name
  4397.  04h    WORD    result buffer size
  4398.  06h    DWORD    -> result buffer as service_info_2 structure
  4399. --------N-215F43-----------------------------
  4400. INT 21 u - LAN Manager Enhanced DOS - LOCAL DosPrintJobGetId
  4401.     AX = 5F43h
  4402.     BX = handle of remote print job
  4403.     CX = size of PRIDINFO struture
  4404.     ES:DI -> PRIDINFO structure (see #0802)
  4405. Return: CF clear if successful
  4406.         PRIDINFO filled in
  4407.     CF set on error
  4408.         AX = error code
  4409.  
  4410. Format of LAN Manager PRIDINFO structure:
  4411. Offset    Size    Description    (Table 0802)
  4412.  00h    WORD    job id
  4413.  02h 16 BYTEs    server name
  4414.  12h 13 BYTEs    queue name
  4415.  1Fh  1 BYTE    pad
  4416. --------N-215F44-----------------------------
  4417. INT 21 u - LAN Manager Enhanced DOS - LOCAL NetWkstaGetInfo
  4418.     AX = 5F44h
  4419.     BX = information level (00h, 01h, or 0Ah)
  4420.     CX = buffer size
  4421.     ES:DI -> buffer in which to store info
  4422. Return: AX = error code
  4423.     DX = amount of buffer used (or required)
  4424. SeeAlso: AX=5F45h,AX=5F49h
  4425. --------N-215F45-----------------------------
  4426. INT 21 u - LAN Manager Enhanced DOS - LOCAL NetWkstaSetInfo
  4427.     AX = 5F45h
  4428.     BX = level (0000h or 0001h)
  4429.     CX = buffer size
  4430.     DX = parameter to set
  4431.     ES:DI -> buffer
  4432. Return: CF clear if successful
  4433.     CF set if error
  4434.         AX = error code
  4435. SeeAlso: AX=5F44h
  4436. --------N-215F46-----------------------------
  4437. INT 21 u - LAN Manager Enhanced DOS - LOCAL NetUseEnum
  4438.     AX = 5F46h
  4439.     BX = level (0000h or 0001h)
  4440.     CX = size of buffer
  4441.     ES:DI -> buffer of use_info_0 or use_info_1 structures
  4442.           (see #0803,#0804)
  4443. Return: CF clear if successful
  4444.         CX = entries read
  4445.         DX = total available entries
  4446.     CF set if error
  4447.         AX = error code
  4448. SeeAlso: AX=5F47h,AX=5F48h,AX=5F4Ch
  4449.  
  4450. Format of LAN Manager use_info_0 structure:
  4451. Offset    Size    Description    (Table 0803)
  4452.  00h  9 BYTEs    local device name
  4453.  09h    BYTE    padding
  4454.  0Ah    DWORD    -> remote device name in UNC form \\server\share
  4455. SeeAlso: #0804
  4456.  
  4457. Format of LAN Manager use_info_1 structure:
  4458. Offset    Size    Description    (Table 0804)
  4459.  00h  9 BYTEs    Local device name
  4460.  09h    BYTE    padding
  4461.  0Ah    DWORD    -> remote device name in UNC form \\server\share
  4462.  0Eh    DWORD    -> password
  4463.  12h    WORD    ignored
  4464.  14h    WORD    use type (-1 wildcard, 0 disk, 1 print, 2 com, 3 ipc)
  4465.  16h    WORD    ignored
  4466.  18h    WORD    ignored
  4467. SeeAlso: #0803
  4468. --------N-215F47-----------------------------
  4469. INT 21 u - LAN Manager Enhanced DOS - LOCAL NetUseAdd
  4470.     AX = 5F47h
  4471.     BX = level (0001h)
  4472.     CX = size of use_info_1 structure
  4473.     ES:DI -> use_info_1 structure (see #0804)
  4474. Return: CF clear on success
  4475.     CF set on error
  4476.         AX = error code
  4477. SeeAlso: AX=5F46h,AX=5F48h
  4478. --------N-215F48-----------------------------
  4479. INT 21 u - LAN Manager Enhanced DOS - LOCAL NetUseDel
  4480.     AX = 5F48h
  4481.     BX = force level
  4482.         0000h no force
  4483.         0001h force
  4484.         0002h lots of force
  4485.     ES:DI -> buffer as either the local device name or UNC remote name
  4486. Return: CF clear on success
  4487.     CF set on error
  4488.         AX = error code
  4489. SeeAlso: AX=5F46h,AX=5F48h,AX=5F49h
  4490. --------N-215F49-----------------------------
  4491. INT 21 u - LAN Manager Enhanced DOS - NetUseGetInfo
  4492.     AX = 5F49h
  4493.     DS:DX -> NetUseGetInfo parameter structure
  4494. Return: CF clear on success
  4495.         DX = total available
  4496.     CF set on error
  4497.         AX = error code
  4498. SeeAlso: AX=5F44h,AX=5F47h
  4499.  
  4500. Format of LAN Manager NetUseGetInfo parameter structure:
  4501. Offset    Size    Description    (Table 0805)
  4502.  00h    DWORD    pointer to either the local device name or UNC remote name
  4503.  04h    WORD    level of information (0000h or 0001h)
  4504.  06h    DWORD    pointer to buffer of use_info_0 or use_info_1 structures
  4505.  0Ah    WORD    length of buffer
  4506. --------N-215F4A-----------------------------
  4507. INT 21 u - LAN Manager Enhanced DOS - LOCAL NetRemoteCopy
  4508.     AX = 5F4Ah
  4509.     DS:DX -> NetRemoteCopy parameter structure (see #0806)
  4510. Return: CF clear if successful
  4511.     CF set on error
  4512.         AX = error code
  4513. SeeAlso: AX=5F4Bh
  4514.  
  4515. Format of LAN Manager NetRemoteCopy parameter structure:
  4516. Offset    Size    Description    (Table 0806)
  4517.  00h    DWORD    -> source name as UNC
  4518.  04h    DWORD    -> destination name as UNC
  4519.  08h    DWORD    -> source password
  4520.  0Ch    DWORD    -> destination password
  4521.  10h    WORD    destination open bitmap
  4522.         if destination path exists
  4523.             0000h open fails
  4524.             0001h file is appended
  4525.             0002h file is overwritten
  4526.         if destination path doesn't exist
  4527.             0000h open fails
  4528.             0010h file is created
  4529.  12h    WORD    copy control bitmap (see #0807)
  4530.  14h    DWORD    -> copy_info buffer
  4531.  18h    WORD    length of copy_info buffer
  4532.  
  4533. Bitfields for LAN Manager copy control:
  4534. Bit(s)    Description    (Table 0807)
  4535.  0    destination must be a file
  4536.  1    destination must be a directory
  4537.  2    destination is opened in ascii mode instead of binary
  4538.  3    source is opened in ascii mode instead of binary
  4539.  4    verify all write operations
  4540. --------N-215F4B-----------------------------
  4541. INT 21 u - LAN Manager Enhanced DOS - LOCAL NetRemoteMove
  4542.     AX = 5F4Bh
  4543.     DS:DX -> NetRemoteMove parameter structure
  4544. Return: CF clear if successful
  4545.     CF set on error
  4546.         AX = error code
  4547. SeeAlso: AX=5F4Ah
  4548.  
  4549. Format of LAN Manager NetRemoteMove parameter structure:
  4550. Offset    Size    Description    (Table 0808)
  4551.  00h    DWORD    -> source name as UNC
  4552.  04h    DWORD    -> destination name as UNC
  4553.  08h    DWORD    -> source password
  4554.  0Ch    DWORD    -> destination password
  4555.  10h    WORD    destination open bitmap
  4556.         if destination path exists
  4557.             0000h open fails
  4558.             0001h file is appended
  4559.             0002h file is overwritten
  4560.         if destination path doesn't exist
  4561.             0000h open fails
  4562.             0010h file is created
  4563.  12h    WORD    move control bitmap
  4564.             0001h destination must be a file
  4565.             0002h destination must be a directory
  4566.  14h    DWORD    -> move_info buffer
  4567.  18h    WORD    length of move_info buffer
  4568. --------N-215F4C-----------------------------
  4569. INT 21 u - LAN Manager Enhanced DOS - LOCAL NetServerEnum
  4570.     AX = 5F4Ch
  4571.     BX = level (0000h or 0001h)
  4572.     CX = buffer length
  4573.     ES:DI -> buffer in which to store information
  4574. Return: CF clear if successful
  4575.         ES:DI -> server_info_X structures (depending on level)
  4576.           (see #0809,#0810)
  4577.         BX = entries read
  4578.         CX = total entries available
  4579.     CF set on error
  4580.         AX = error code
  4581. Notes:    this function is also supported by the Novell DOS Named Pipe Extender
  4582.     this function has been obseleted by NetServerEnum2
  4583. SeeAlso: AX=5F53h
  4584.  
  4585. Format of LAN Manager server_info_0 structure:
  4586. Offset    Size    Description    (Table 0809)
  4587.  00h 16 BYTEs    name
  4588. SeeAlso: #0810
  4589.  
  4590. Format of LAN Manager server_info_1 structure:
  4591. Offset    Size    Description    (Table 0810)
  4592.  00h 16 BYTEs    name
  4593.  10h    BYTE    major version in lower nibble
  4594.  11h    BYTE    minor version
  4595.  12h    DWORD    server type bitmask (see #0811)
  4596.  16h    DWORD    -> comment string
  4597. SeeAlso: #0809
  4598.  
  4599. Bitfields for LAN Manager server type:
  4600. Bit(s)    Description    (Table 0811)
  4601.  0    workstation
  4602.  1    server
  4603.  2    SQL server
  4604.  3    primary domain controller
  4605.  4    backup domain controller
  4606.  5    time server
  4607.  6    Apple File Protocol (AFP) server
  4608.  7    Novell server
  4609.  8    Domain Member (v2.1+)
  4610.  9    Print Queue server (v2.1+)
  4611.  10    Dialin server (v2.1+)
  4612.  11    Unix server (v2.1+)
  4613. --------N-215F4D-----------------------------
  4614. INT 21 u - LAN Manager Enhanced DOS - DosMakeMailslot
  4615.     AX = 5F4Dh
  4616.     BX = message size
  4617.     CX = mailslot size (must be bigger than message size by at least 1)
  4618.                (minimum 1000h, maximum FFF6h)
  4619.                (buffer must be 9 bytes bigger than this)
  4620.     DS:SI -> name
  4621.     ES:DI -> memory buffer
  4622. Return: CF clear if successful
  4623.         AX = handle
  4624.     CF set on error
  4625.         AX = error code
  4626. SeeAlso: AX=5F4Eh,AX=5F4Fh,AX=5F50h,AX=5F51h
  4627. --------N-215F4E-----------------------------
  4628. INT 21 u - LAN Manager Enhanced DOS - DosDeleteMailslot
  4629.     AX = 5F4Eh
  4630.     BX = handle
  4631. Return: CF clear if successful
  4632.         ES:DI -> memory to be freed (allocated during DosMakeMailslot)
  4633.     CF set on error
  4634.         AX = error code
  4635. SeeAlso: AX=5F4Dh,AX=5F4Fh
  4636. --------N-215F4F-----------------------------
  4637. INT 21 u - LAN Manager Enhanced DOS - DosMailslotInfo
  4638.     AX = 5F4Fh
  4639.     BX = handle
  4640. Return: CF clear if successful
  4641.         AX = max message size
  4642.         BX = mailslot size
  4643.         CX = next message size
  4644.         DX = next message priority
  4645.         SI = number of messages waiting
  4646.     CF set on error
  4647.         AX = error code
  4648. SeeAlso: AX=5F4Dh,AX=5F4Eh,AX=5F50h
  4649. --------N-215F50-----------------------------
  4650. INT 21 u - LAN Manager Enhanced DOS - DosReadMailslot
  4651.     AX = 5F50h
  4652.     BX = handle
  4653.     DX:CX = timeout
  4654.     ES:DI -> buffer
  4655. Return: CF clear if successful
  4656.         AX = bytes read
  4657.         CX = next item's size
  4658.         DX = next item's priority
  4659.     CF set on error
  4660.         AX = error code
  4661. SeeAlso: AX=5F4Dh,AX=5F4Fh,AX=5F51h,AX=5F52h
  4662. --------N-215F51-----------------------------
  4663. INT 21 u - LAN Manager Enhanced DOS - DosPeekMailslot
  4664.     AX = 5F51h
  4665.     BX = handle
  4666.     ES:DI -> buffer
  4667. Return: CF clear if successful
  4668.         AX = bytes read
  4669.         CX = next item's size
  4670.         DX = next item's priority
  4671.     CF set on error
  4672.         AX = error code
  4673. SeeAlso: AX=5F35h,AX=5F4Fh,AX=5F50h,AX=5F52h
  4674. --------N-215F52-----------------------------
  4675. INT 21 u - LAN Manager Enhanced DOS - DosWriteMailslot
  4676.     AX = 5F52h
  4677.     BX = class
  4678.     CX = length of buffer
  4679.     DX = priority
  4680.     ES:DI -> DosWriteMailslot parameter structure (see #0812)
  4681.     DS:SI -> mailslot name
  4682. Return: CF clear if successful
  4683.     CF set on error
  4684.         AX = error code
  4685. SeeAlso: AX=5F4Fh,AX=5F50h,AX=5F51h
  4686.  
  4687. Format of LAN Manager DosWriteMailslot parameter structure:
  4688. Offset    Size    Description    (Table 0812)
  4689.  00h    DWORD    timeout
  4690.  04h    DWORD    -> buffer
  4691. --------N-215F53-----------------------------
  4692. INT 21 u - LAN Manager Enhanced DOS - NetServerEnum2
  4693.     AX = 5F53h
  4694.     DS:SI -> NetServerEnum2 parameter structure (see #0813)
  4695. Return: CF clear if successful
  4696.         BX = entries read
  4697.         CX = total entries available
  4698.     CF set on error
  4699.         AX = error code
  4700. SeeAlso: AX=5F4Ch
  4701.  
  4702. Format of LAN Manager NetServerEnum2 parameter structure:
  4703. Offset    Size    Description    (Table 0813)
  4704.  00h    WORD    level (0000h or 0001h)
  4705.  02h    DWORD    -> buffer as array of server_info_??? structures
  4706.  06h    WORD    length of buffer
  4707.  08h    DWORD    server type bitmask (see #0814)
  4708.  0Ch    DWORD    -> Domain name (may be 0000h:0000h for all local domains)
  4709.  
  4710. Bitfields for LAN Manager server type:
  4711. Bit(s)    Description    (Table 0814)
  4712.  0    workstation
  4713.  1    server
  4714.  2    SQL server
  4715.  3    primary domain controller
  4716.  4    backup domain controller
  4717.  5    time server
  4718.  6    Apple File Protocol (AFP) server
  4719.  7    Novell server
  4720.  8    Domain Member (v2.1+)
  4721.  9    Print Queue server (v2.1+)
  4722.  10    Dialin server (v2.1+)
  4723.  11    Unix server (v2.1+)
  4724. Note:    set all (FFFFFFFFh) for All Types
  4725.  
  4726. Format of LAN Manager server_info_0 structure:
  4727. Offset    Size    Description    (Table 0815)
  4728.  00h 16 BYTEs    name
  4729.  
  4730. Format of LAN Manager server_info_1 structure:
  4731. Offset    Size    Description    (Table 0816)
  4732.  00h 16 BYTEs    name
  4733.  10h    BYTE    major version in lower nibble
  4734.  11h    BYTE    minor version
  4735.  12h    DWORD    server type (bits 0-11) (see #0814)
  4736.  16h    DWORD    -> comment string
  4737. --------N-215F55----------------------------
  4738. INT 21 U - LAN Manager Enhanced DOS - KILL ALL CONNECTIONS???
  4739.     AX = 5F55h
  4740.     BX = ???
  4741. Return: CF clear if successful
  4742.     CF set on error
  4743.         AX = error code
  4744. --------N-215F80-----------------------------
  4745. INT 21 - LANtastic - GET LOGIN ENTRY
  4746.     AX = 5F80h
  4747.     BX = login entry index (0-based)
  4748.     ES:DI -> 16-byte buffer for machine name
  4749. Return: CF clear if successful
  4750.         buffer filled with machine name ("\\" prefix removed)
  4751.         DL = adapter number (v3+)
  4752.     CF set on error
  4753.         AX = error code
  4754. Note:    the login entry index corresponds to the value BX used in AX=5F83h
  4755. SeeAlso: AX=5F83h
  4756. --------N-215F81-----------------------------
  4757. INT 21 - LANtastic - LOGIN TO SERVER
  4758.     AX = 5F81h
  4759.     ES:DI -> ASCIZ login path followed immediately by ASCIZ password
  4760.     BL = adapter number
  4761.         FFh try all valid adapters
  4762.         00h-07h try only specified adapter
  4763. Return: CF clear if successful
  4764.     CF set on error
  4765.         AX = error code
  4766. Notes:    login path is of form "\\machine\username"
  4767.     if no password is used, the string at ES:DI must be terminated with
  4768.       three NULs for compatibility with LANtastic v3.0.
  4769. SeeAlso: AX=5F82h,AX=5F84h
  4770. --------N-215F82-----------------------------
  4771. INT 21 - LANtastic - LOGOUT FROM SERVER
  4772.     AX = 5F82h
  4773.     ES:DI -> ASCIZ server name (in form "\\machine")
  4774. Return: CF clear if successful
  4775.     CF set on error
  4776.         AX = error code
  4777. SeeAlso: AX=5F81h,AX=5F88h,AX=5FCBh
  4778. --------N-215F83-----------------------------
  4779. INT 21 - LANtastic - GET USERNAME ENTRY
  4780.     AX = 5F83h
  4781.     BX = login entry index (0-based)
  4782.     ES:DI -> 16-byte buffer for username currently logged into
  4783. Return: CF clear if successful
  4784.         DL = adapter number (v3+)
  4785.     CF set on error
  4786.         AX = error code
  4787. Note:    the login entry index corresponds to the value BX used in AX=5F80h
  4788. SeeAlso: AX=5F80h
  4789. --------N-215F84-----------------------------
  4790. INT 21 - LANtastic - GET INACTIVE SERVER ENTRY
  4791.     AX = 5F84h
  4792.     BX = server index not currently logged into
  4793.     ES:DI -> 16-byte buffer for server name which is available for logging
  4794.         in to ("\\" prefix omitted)
  4795. Return: CF clear if successful
  4796.         DL = adapter number to non-logged in server is on
  4797.     CF set on error
  4798.         AX = error code
  4799. SeeAlso: AX=5F81h
  4800. --------N-215F85-----------------------------
  4801. INT 21 - LANtastic - CHANGE PASSWORD
  4802.     AX = 5F85h
  4803.     ES:DI -> buffer containing "\\machine\oldpassword" 00h "newpassword"00h
  4804. Return: CF clear if successful
  4805.     CF set on error
  4806.         AX = error code
  4807. Notes:    must be logged into the named machine
  4808.     this function is illegal for group accounts
  4809. --------N-215F86-----------------------------
  4810. INT 21 - LANtastic - DISABLE ACCOUNT
  4811.     AX = 5F86h
  4812.     ES:DI -> ASCIZ machine name and password in form "\\machine\password"
  4813. Return: CF clear if successful
  4814.     CF set on error
  4815.         AX = error code
  4816. Note:    must be logged into the named machine and concurrent logins set to 1
  4817.       by NET_MGR.  Requires system manager to re-enable account.
  4818. --------N-215F87-----------------------------
  4819. INT 21 - LANtastic v3+ - GET ACCOUNT
  4820.     AX = 5F87h
  4821.     DS:SI -> 128-byte buffer for account information (see #0817)
  4822.     ES:DI -> ASCIZ machine name in form "\\machine"
  4823. Return: CF clear if successful
  4824.     CF set on error
  4825.         AX = error code
  4826.     BX destroyed
  4827. Note:    must be logged into the specified machine
  4828.  
  4829. Format of LANtastic user account structure:
  4830. Offset    Size    Description    (Table 0817)
  4831.  00h 16 BYTEs    blank-padded username (zero-padded for v4.x)
  4832.  10h 16 BYTEs    reserved (00h)
  4833.  20h 32 BYTEs    user description
  4834.  40h    BYTE    privilege bits (see #0818)
  4835.  41h    BYTE    maximum concurrent users
  4836.  42h 42 BYTEs    bit map for disallowed half hours, beginning on Sunday
  4837.         (bit set if half-hour not an allowed time)
  4838.  6Ch    WORD    internal (0002h)
  4839.  6Eh  2 WORDs    last login time
  4840.  72h  2 WORDs    account expiration date (MS-DOS-format year/month:day)
  4841.  76h  2 WORDs    password expiration date (0 = none)
  4842.  7Ah    BYTE    number of days to extend password after change (1-31)
  4843.         00h if no extension required
  4844. ---v3.x---
  4845.  7Bh  5 BYTEs    reserved
  4846. ---v4.x---
  4847.  7Bh    BYTE    storage for first letter of user name when deleted (first
  4848.           character is changed to 00h when deleting account)
  4849.  7Ch    BYTE    extended privileges
  4850.  7Dh  3 BYTEs    reserved
  4851.  
  4852. Bitfields for LANtastic privilege bits:
  4853. Bit(s)    Description    (Table 0818)
  4854.  7    bypass access control lists
  4855.  6    bypass queue protection
  4856.  5    treat as local process
  4857.  4    bypass mail protection
  4858.  3    allow audit entry creation
  4859.  2    system manager
  4860.  0    user cannot change password
  4861. --------N-215F88-----------------------------
  4862. INT 21 - LANtastic v4.0+ - LOGOUT FROM ALL SERVERS
  4863.     AX = 5F88h
  4864. Return: CF clear if successful
  4865.     CF set on error
  4866.         AX = error code
  4867. SeeAlso: AX=5F82h
  4868. --------N-215F97-----------------------------
  4869. INT 21 - LANtastic - COPY FILE
  4870.     AX = 5F97h
  4871.     CX:DX = number of bytes to copy (FFFFFFFFh = entire file)
  4872.     SI = source file handle
  4873.     DI = destination file handle
  4874. Return: CF clear if successful
  4875.         DX:AX = number of bytes copied
  4876.     CF set on error
  4877.         AX = error code
  4878. Note:    copy is performed by server
  4879. --------N-215F98-----------------------------
  4880. INT 21 - LANtastic - SEND UNSOLICITED MESSAGE
  4881.     AX = 5F98h
  4882.     DS:SI -> message buffer (see #0819)
  4883. Return: CF clear if successful
  4884.     CF set on error
  4885.         AX = error code
  4886. Note:    v4.1- return no errors
  4887. SeeAlso: AX=5F99h
  4888.  
  4889. Format of LANtastic message buffer:
  4890. Offset    Size    Description    (Table 0819)
  4891.  00h    BYTE    reserved
  4892.  01h    BYTE    message type
  4893.         00h general
  4894.         01h server warning
  4895.         02h-7Fh reserved
  4896.         80h-FFh user-defined
  4897.  02h 16 BYTEs    ASCIZ destination machine name
  4898.  12h 16 BYTEs    ASCIZ server name which user must be logged into
  4899.  22h 16 BYTEs    ASCIZ user name
  4900.  32h 16 BYTEs    ASCIZ originating machine name (filled in when received)
  4901.  42h 80 BYTEs    message text
  4902. --------N-215F99-----------------------------
  4903. INT 21 - LANtastic - GET LAST RECEIVED UNSOLICITED MESSAGE
  4904.     AX = 5F99h
  4905.     ES:DI -> messsage buffer (see #0819)
  4906. Return: CF clear if successful
  4907.     CF set on error
  4908.         AX = error code
  4909. SeeAlso: AX=5F98h
  4910. --------N-215F9A-----------------------------
  4911. INT 21 - LANtastic - GET MESSAGE PROCESSING FLAGS
  4912.     AX = 5F9Ah
  4913. Return: CF clear if successful
  4914.         DL = bits describing processing of received messages (see #0820)
  4915.     CF set on error
  4916.         AX = error code
  4917. SeeAlso: AX=5F9Bh,AX=5F9Ch,AX=5F9Dh
  4918.  
  4919. Bitfields for unsolicited message processing flags:
  4920. Bit(s)    Description    (Table 0820)
  4921.  0    beep before message is delivered
  4922.  1    deliver message to message service
  4923.  2    pop up message automatically (v3+)
  4924. --------N-215F9B-----------------------------
  4925. INT 21 - LANtastic - SET MESSAGE PROCESSING FLAGS
  4926.     AX = 5F9Bh
  4927.     DL = bits describing processing for received unsolicited messages
  4928.          (see #0820)
  4929. Return: CF clear if successful
  4930.     CF set on error
  4931.         AX = error code
  4932. SeeAlso: AX=5F9Ah,AX=5F9Eh
  4933. --------N-215F9C-----------------------------
  4934. INT 21 - LANtastic v3+ - POP UP LAST RECEIVED MESSAGE
  4935.     AX = 5F9Ch
  4936.     CX = time to leave on screen in clock ticks
  4937.     DH = 0-based screen line on which to place message
  4938. Return: CF clear if successful
  4939.     CF set on error
  4940.         AX = error code (0Bh)
  4941. Notes:    the original screen contents are restored when the message is removed
  4942.     the message will not appear, and an error will be returned, if the
  4943.       screen is in a graphics mode
  4944. SeeAlso: AX=5F9Ah
  4945. --------N-215F9D-----------------------------
  4946. INT 21 - LANtastic v4.1+ - GET REDIRECTOR CONTROL BITS
  4947.     AX = 5F9Dh
  4948. Return: DL = redirector control bits
  4949.         bit 7: set to notify on print job completion
  4950. SeeAlso: AX=5F9Ah,AX=5F9Eh
  4951. --------N-215F9E-----------------------------
  4952. INT 21 - LANtastic v4.1+ - SET REDIRECTOR CONTROL BITS
  4953.     AX = 5F9Eh
  4954.     DL = redirector control bits (see AX=5F9Dh)
  4955. Return: nothing
  4956. SeeAlso: AX=5F9Bh,AX=5F9Dh
  4957. --------N-215FA0-----------------------------
  4958. INT 21 - LANtastic - GET QUEUE ENTRY
  4959.     AX = 5FA0h
  4960.     BX = queue entry index (0000h is first entry)
  4961.     DS:SI -> buffer for queue entry (see #0823)
  4962.     ES:DI -> ASCIZ server name in form "\\name"
  4963. Return: CF clear if successful
  4964.     CF set on error
  4965.         AX = error code
  4966.     BX = entry index for next queue entry (BX-1 is current index)
  4967. SeeAlso: AX=5FA1h,AX=5FA2h
  4968.  
  4969. (Table 0821)
  4970. Values for status of LANtastic queue entry:
  4971.  00h    empty
  4972.  01h    being updated
  4973.  02h    being held
  4974.  03h    waiting for despool
  4975.  04h    being despooled
  4976.  05h    canceled
  4977.  06h    spooled file could not be accessed
  4978.  07h    destination could not be accessed
  4979.  08h    rush job
  4980.  
  4981. (Table 0822)
  4982. Values for type of LANtastic queue entry:
  4983.  00h    printer queue file
  4984.  01h    message
  4985.  02h    local file
  4986.  03h    remote file
  4987.  04h    to remote modem
  4988.  05h    batch processor file
  4989.  
  4990. Format of LANtastic queue entry:
  4991. Offset    Size    Description    (Table 0823)
  4992.  00h    BYTE    status of entry (see #0821)
  4993.  01h    DWORD    size of spooled file
  4994.  05h    BYTE    type of entry (see #0822)
  4995.  06h    BYTE    output control (see #0824)
  4996.  07h    WORD    number of copies
  4997.  09h    DWORD    sequence number of queue entry
  4998.  0Dh 48 BYTEs    pathname of spooled file
  4999.  3Dh 16 BYTEs    user who spooled file
  5000.  4Dh 16 BYTEs    name of machine from which file was spooled
  5001.  5Dh    WORD    date file was spooled (see #0762 at AX=5700h)
  5002.  5Fh    WORD    time file was spooled (see #0761 at AX=5700h)
  5003.  61h 17 BYTEs    ASCIZ destination device or user name
  5004.  72h 48 BYTEs    comment field
  5005.  
  5006. Bitfields for output control:
  5007. Bit(s)    Description    (Table 0824)
  5008.  6    don't delete (for mail)
  5009.  5    mail file contains voice mail (v3+)
  5010.  4    mail message has been read
  5011.  3    response has been requested for this mail
  5012. --------N-215FA1-----------------------------
  5013. INT 21 - LANtastic - SET QUEUE ENTRY
  5014.     AX = 5FA1h
  5015.     BX = handle of opened queue entry
  5016.     DS:SI -> queue entry (see #0823)
  5017. Return: CF clear if successful
  5018.     CF set on error
  5019.         AX = error code
  5020. Notes:    the only queue entry fields which may be changed are output control,
  5021.       number of copies, destination device, and comment
  5022.     the handle in BX is that from a create or open (INT 21/AH=3Ch,3Dh)
  5023.       call on the file "\\server\\@MAIL" or "\\server\@name" (for
  5024.       printer queue entries)
  5025. SeeAlso: AX=5FA0h,AX=5FA2h,AX=5FA9h
  5026. --------N-215FA2-----------------------------
  5027. INT 21 - LANtastic - CONTROL QUEUE
  5028.     AX = 5FA2h
  5029.     BL = control command
  5030.         00h start despooling (privileged)
  5031.         01h halt despooling (privileged)
  5032.         02h halt despooling at end of job (privileged)
  5033.         03h pause despooler at end of job (privileged)
  5034.         04h print single job (privileged)
  5035.         05h restart current job (privileged)
  5036.         06h cancel the current job
  5037.         07h hold queue entry
  5038.         08h release a held queue entry
  5039.         09h make queue entry a rushed job (privileged)
  5040.     CX:DX = sequence number to control (commands 06h-09h)
  5041.     DX = physical printer number (commands 00h-05h)
  5042.         00h-02h LPT1-LPT3
  5043.         03h,04h COM1,COM2
  5044.         other    all printers
  5045.     ES:DI -> ASCIZ server name in form "\\machine"
  5046. Return: CF clear if successful
  5047.     CF set on error
  5048.         AX = error code
  5049. --------N-215FA3-----------------------------
  5050. INT 21 - LANtastic v3+ - GET PRINTER STATUS
  5051.     AX = 5FA3h
  5052.     BX = physical printer number (00h-02h = LPT1-LPT3, 03h-04h = COM1-COM2)
  5053.     DS:SI -> buffer for printer status (see #0825)
  5054.     ES:DI -> ASCIZ server name in form "\\machine"
  5055. Return: CF clear if successful
  5056.     CF set on error
  5057.         AX = error code
  5058.     BX = next physical printer number
  5059. Note:    you must be logged in to the specified server
  5060.  
  5061. Format of LANtastic printer status:
  5062. Offset    Size    Description    (Table 0825)
  5063.  00h    BYTE    printer state (see #0826)
  5064.  01h    WORD    queue index of print job being despooled
  5065.         FFFFh if not despooling--ignore all following fields
  5066.  03h    WORD    actual characters per second being output
  5067.  05h    DWORD    number of characters actually output so far
  5068.  09h    DWORD    number of bytes read from spooled file so far
  5069.  0Dh    WORD    copies remaining to print
  5070.  
  5071. Bitfields for LANtastic printer state:
  5072. Bit(s)    Description    (Table 0826)
  5073.  7    printer paused
  5074.  0-6    0 printer disabled
  5075.     1 will stop at end of job
  5076.     2 print multiple jobs
  5077. --------N-215FA4-----------------------------
  5078. INT 21 - LANtastic v3+ - GET STREAM INFO
  5079.     AX = 5FA4h
  5080.     BX = 0-based stream index number
  5081.     DS:SI -> buffer for stream information (see #0827)
  5082.     ES:DI -> ASCIZ machine name in form "\\machine"
  5083. Return: CF clear if successful
  5084.     CF set on error
  5085.         AX = error code
  5086.     BX = next stream number
  5087. SeeAlso: AX=5FA5h
  5088.  
  5089. Format of LANtastic stream information:
  5090. Offset    Size    Description    (Table 0827)
  5091.  00h    BYTE    queueing of jobs for logical printer (0=disabled,other=enabled)
  5092.  01h 11 BYTEs    logical printer resource template (may contain ? wildcards)
  5093. --------N-215FA5-----------------------------
  5094. INT 21 - LANtastic v3+ - SET STREAM INFO
  5095.     AX = 5FA5h
  5096.     BX = 0-based stream index number
  5097.     DS:SI -> buffer containing stream information (see #0827)
  5098.     ES:DI -> ASCIZ machine name in form "\\machine"
  5099. Return: CF clear if successful
  5100.     CF set on error
  5101.         AX = error code
  5102. SeeAlso: AX=5FA4h
  5103. --------N-215FA7-----------------------------
  5104. INT 21 - LANtastic - CREATE USER AUDIT ENTRY
  5105.     AX = 5FA7h
  5106.     DS:DX -> ASCIZ reason code (max 8 bytes)
  5107.     DS:SI -> ASCIZ variable reason string (max 128 bytes)
  5108.     ES:DI -> ASCIZ machine name in form "\\machine"
  5109. Return: CF clear if successful
  5110.     CF set on error
  5111.         AX = error code
  5112. Note:    you must be logged in to the specified server and have the "U"
  5113.       privilege to execute this call
  5114. --------N-215FA9-----------------------------
  5115. INT 21 - LANtastic v4.1+ - SET EXTENDED QUEUE ENTRY
  5116.     AX = 5FA9h
  5117.     BX = handle of opened queue entry
  5118.     DS:SI -> queue entry (see #0823)
  5119. Return: CF clear if successful
  5120.     CF set on error
  5121.         AX = error code
  5122. Note:    functions exactly the same as AX=5FA1h except the spooled filename is
  5123.       also set.  This call supports direct despooling.
  5124. SeeAlso: AX=5FA1h
  5125. --------N-215FB0-----------------------------
  5126. INT 21 - LANtastic - GET ACTIVE USER INFORMATION
  5127.     AX = 5FB0h
  5128.     BX = server login entry index
  5129.     DS:SI -> buffer for active user entry (see #0828)
  5130.     ES:DI -> ASCIZ machine name in form "\\server"
  5131. Return: CF clear if successful
  5132.     CF set on error
  5133.         AX = error code
  5134.     BX = next login index
  5135. SeeAlso: AX=5FB2h
  5136.  
  5137. Format of LANtastic active user entry:
  5138. Offset    Size    Description    (Table 0828)
  5139.  00h    WORD    virtual circuit number
  5140.  02h    BYTE    login state (see #0829)
  5141.  03h    BYTE    last command issued (see #0830)
  5142.  04h  5 BYTEs    number of I/O bytes (40-bit unsigned number)
  5143.  09h  3 BYTEs    number of server requests (24-bit unsigned)
  5144.  0Ch 16 BYTEs    name of user who is logged in
  5145.  1Ch 16 BYTEs    name of remote logged in machine
  5146.  2Ch    BYTE    extended privileges (v4+???)
  5147.         bit 0: user cannot change his password
  5148.  2Dh    WORD    time left in minutes (0000h = unlimited) (v4+???)
  5149.  
  5150. Bitfields for login state:
  5151. Bit(s)    Description    (Table 0829)
  5152.  0    fully logged in
  5153.  1    remote program load login
  5154.  2    user has system manager privileges
  5155.  3    user can create audit entries
  5156.  4    bypass mail protection
  5157.  5    treat as local process
  5158.  6    bypass queue protection
  5159.  7    bypass access control lists
  5160.  
  5161. (Table 0830)
  5162. Values for last LANtastic command:
  5163.  00h    login
  5164.  01h    process termination
  5165.  02h    open file
  5166.  03h    close file
  5167.  04h    create file
  5168.  05h    create new file
  5169.  06h    create unique file
  5170.  07h    commit data to disk
  5171.  08h    read file
  5172.  09h    write file
  5173.  0Ah    delete file
  5174.  0Bh    set file attributes
  5175.  0Ch    lock byte range
  5176.  0Dh    unlock byte range
  5177.  0Eh    create subdirectory
  5178.  0Fh    remove subdirectory
  5179.  10h    rename file
  5180.  11h    find first matching file
  5181.  12h    find next matching file
  5182.  13h    get disk free space
  5183.  14h    get a queue entry
  5184.  15h    set a queue entry
  5185.  16h    control the queue
  5186.  17h    return login information
  5187.  18h    return link description
  5188.  19h    seek on file
  5189.  1Ah    get server's time
  5190.  1Bh    create audit entry
  5191.  1Ch    open file in multitude of modes
  5192.  1Dh    change password
  5193.  1Eh    disable account
  5194.  1Fh    local server file copy
  5195. ---v3+---
  5196.  20h    get username from account file
  5197.  21h    translate server's logical path
  5198.  22h    make indirect file
  5199.  23h    get indirect file contents
  5200.  24h    get physical printer status
  5201.  25h    get logical print stream info
  5202.  26h    set logical print stream info
  5203.  27h    get user's account record
  5204. ---v4+---
  5205.  28h    request server shutdown
  5206.  29h    cancel server shutdown
  5207.  2Ah    stuff server's keyboard
  5208.  2Bh    write then commit data to disk
  5209.  2Ch    set extended queue entry
  5210.  2Dh    terminate user from server
  5211.  2Eh    enable/disable logins
  5212.  2Fh    flush server caches
  5213.  30h    change username
  5214.  31h    get extended queue entry
  5215.     (same as get queue, but can return named fields blanked)
  5216. --------N-215FB1-----------------------------
  5217. INT 21 - LANtastic - GET SHARED DIRECTORY INFORMATION
  5218.     AX = 5FB1h
  5219.     DS:SI -> 64-byte buffer for link description
  5220.     ES:DI -> ASCIZ machine and shared directory name in form
  5221.          "\\machine\shared-resource"
  5222. Return: CF clear if successful
  5223.         CX = access control list privileges for requesting user (see #0831)
  5224.     CF set on error
  5225.         AX = error code
  5226.  
  5227. Bitfields for LANtastic access control list:
  5228. Bit(s)    Description    (Table 0831)
  5229.  4    (I) allow expansion of indirect files
  5230.  5    (A) allow attribute changing
  5231.  6    (P) allow physical access to device
  5232.  7    (E) allow program execution
  5233.  8    (N) allow file renaming
  5234.  9    (K) allow directory deletion
  5235.  10    (D) allow file deletion
  5236.  11    (L) allow file/directory lookups
  5237.  12    (M) allow directory creation
  5238.  13    (C) allow file creation
  5239.  14    (W) allow open for write and writing
  5240.  15    (R) allow open for read and reading
  5241. --------N-215FB2-----------------------------
  5242. INT 21 - LANtastic v3+ - GET USERNAME FROM ACCOUNT FILE
  5243.     AX = 5FB2h
  5244.     BX = username entry index (0 for first)
  5245.     DS:SI -> 16-byte buffer for username
  5246.     ES:DI -> ASCIZ server name in form "\\machine"
  5247. Return: CF clear if successful
  5248.     CF set on error
  5249.         AX = error code
  5250.     BX = next queue entry index
  5251. SeeAlso: AX=5FB0h
  5252. --------N-215FB3-----------------------------
  5253. INT 21 - LANtastic v3+ - TRANSLATE PATH
  5254.     AX = 5FB3h
  5255.     DS:SI -> 128-byte buffer for ASCIZ result
  5256.     ES:DI -> full ASCIZ path, including server name
  5257.     DX = types of translation to be performed
  5258.         bit 0: expand last component as indirect file
  5259.         bit 1: return actual path relative to server's physical disk
  5260. Return: CF clear if successful
  5261.     CF set on error
  5262.         AX = error code
  5263. Note:    always expands any indirect files along the path
  5264. SeeALso: AX=5FB4h,INT 21/AH=60h
  5265. --------N-215FB4-----------------------------
  5266. INT 21 - LANtastic v3+ - CREATE INDIRECT FILE
  5267.     AX = 5FB4h
  5268.     DS:SI -> 128-byte buffer containing ASCIZ contents of indirect file
  5269.     ES:DI -> full ASCIZ path of indirect file to create, incl machine name
  5270. Return: CF clear if successful
  5271.     CF set on error
  5272.         AX = error code
  5273. Note:    the contents of the indirect file may be any valid server-relative path
  5274. SeeAlso: AX=5FB3h,AX=5FB5h
  5275. --------N-215FB5-----------------------------
  5276. INT 21 - LANtastic v3+ - GET INDIRECT FILE CONTENTS
  5277.     AX = 5FB5h
  5278.     DS:SI -> 128-byte buffer for ASCIZ indirect file contents
  5279.     ES:DI -> full ASCIZ path of indirect file
  5280. Return: CF clear if successful
  5281.     CF set on error
  5282.         AX = error code
  5283. SeeAlso: AX=5FB4h
  5284. --------N-215FB6-----------------------------
  5285. INT 21 - LANtastic v4.1+ - SET AUTO-LOGIN DEFAULTS
  5286.     AX = 5FB6h
  5287.     ES:DI -> pointer to ASCIZ default user name, immediately followed by
  5288.         ASCIZ password
  5289.     BL = adapter number to use for default login attempt
  5290.         FFh try all valid adapters
  5291.         00h-05h try adapter 0-5 explicitly
  5292. Return: CF clear if successful
  5293.     CF set on error
  5294.         AX = error code
  5295. Notes:    call with ES:DI -> two nulls to disable auto-login
  5296. SeeAlso: AX=5FB7h
  5297. --------N-215FB7-----------------------------
  5298. INT 21 - LANtastic v4.1+ - GET AUTO-LOGIN DEFAULTS
  5299.     AX = 5FB7h
  5300.     ES:DI -> pointer to 16-byte buffer to store ASCIZ auto-login user name
  5301. Return: CF clear if successful
  5302.         DL = adapter number used for default login attempt
  5303.         FFh all valid adapters will be tried
  5304.         00h-05h specified adapter will be tried explicitly
  5305.     CF set on error
  5306.         AX = error code
  5307. SeeAlso: AX=5F81h,AX=5FB6h
  5308. --------N-215FC0-----------------------------
  5309. INT 21 - LANtastic - GET TIME FROM SERVER
  5310.     AX = 5FC0h
  5311.     DS:SI -> time block (see #0832)
  5312.     ES:DI -> ASCIZ server name to get time from
  5313. Return: CF clear if successful
  5314.     CF set on error
  5315.         AX = error code
  5316. SeeAlso: AH=E7h
  5317.  
  5318. Format of LANtastic time block:
  5319. Offset    Size    Description    (Table 0832)
  5320.  00h    WORD    year
  5321.  02h    BYTE    day
  5322.  03h    BYTE    month
  5323.  04h    BYTE    minutes
  5324.  05h    BYTE    hour
  5325.  06h    BYTE    hundredths of second
  5326.  07h    BYTE    second
  5327. --------N-215FC8-----------------------------
  5328. INT 21 - LANtastic v4.0+ - SCHEDULE SERVER SHUTDOWN
  5329.     AX = 5FC8h
  5330.     ES:DI -> ASCIZ server name in form "\\machine"
  5331.     DS:SI -> ASCIZ reason string (80 characters)
  5332.     CX = number of minutes until shutdown (0 = immediate)
  5333.     DX = option flags (see #0833)
  5334. Return: CF clear if successful
  5335.     CF set on error
  5336.         AX = error code
  5337. SeeAlso: AX=5FC9h
  5338.  
  5339. Bitfields for LANtastic option flags:
  5340. Bit(s)    Description    (Table 0833)
  5341.  0    auto reboot
  5342.  1    do not notify users
  5343.  2    halt after shutdown
  5344.  3    shutdown due to power fail (used by UPS)
  5345.  4-7    reserved
  5346.  8-14    user definable
  5347.  15    reserved
  5348. --------N-215FC9-----------------------------
  5349. INT 21 - LANtastic v4.0+ - CANCEL SERVER SHUTDOWN
  5350.     AX = 5FC9h
  5351.     ES:DI -> ASCIZ server name in form "\\machine"
  5352. Return: CF clear if successful
  5353.     CF set on error
  5354.         AX = error code
  5355. Note:    you must have the "S" privilege to use this call
  5356. SeeAlso: AX=5FC8h
  5357. --------N-215FCA-----------------------------
  5358. INT 21 - LANtastic v4.0+ - STUFF SERVER KEYBOARD BUFFER
  5359.     AX = 5FCAh
  5360.     ES:DI -> ASCIZ server name in form "\\machine"
  5361.     DS:SI -> ASCIZ string to stuff (128 bytes)
  5362. Return: CF clear if successful
  5363.     CF set on error
  5364.         AX = error code
  5365. Note:    you must have the "S" privilege to use this call
  5366.     maximum number of characters that can be stuffed is determined by the
  5367.       server's RUN BUFFER SIZE.
  5368. SeeAlso: INT 16/AH=05h
  5369. --------N-215FCB-----------------------------
  5370. INT 21 - LANtastic v4.1+ - TERMINATE USER
  5371.     AX = 5FCBh
  5372.     ES:DI -> ASCIZ server name in form "\\machine"
  5373.     DS:SI -> blank-padded username.     A null char = wildcard.
  5374.     DS:DX -> blank-padded machine name.  A null char = wildcard.
  5375.     CX = minutes until termination (0 = immediate)
  5376. Return: CF clear if successful
  5377.     CF set on error
  5378.         AX = error code
  5379. Note:    you must have the "S" privilege to use this call
  5380.     you cannot log yourself out using this call
  5381. SeeAlso: AX=5F82h
  5382. --------N-215FCC-----------------------------
  5383. INT 21 - LANtastic v4.1+ - GET/SET SERVER CONTROL BITS
  5384.     AX = 5FCCh
  5385.     ES:DI -> ASCIZ server name in form "\\machine"
  5386.     CX = bit values (value of bits you want to set) (see #0834)
  5387.     DX = bit mask (bits you are interested in, 0 = get only) (see #0834)
  5388. Return: CF clear if successful
  5389.         CX = control bits after call (see #0834)
  5390.     CF set on error
  5391.         AX = error code
  5392. Note:    you must have the "S" privilege to SET, anyone can GET.
  5393.  
  5394. Bitfields for control bits:
  5395. Bit(s)    Description    (Table 0834)
  5396.  0    disable logins
  5397. --------N-215FCD-----------------------------
  5398. INT 21 - LANtastic v4.1+ - FLUSH SERVER CACHES
  5399.     AX = 5FCDh
  5400.     ES:DI -> ASCIZ server name in form "\\machine"
  5401. Return: CF clear if successful
  5402.     CF set on error
  5403.         AX = error code
  5404. Note:    you must have the "S" privilege to use this call.
  5405. --------N-215FD0-----------------------------
  5406. INT 21 - LANtastic - GET REDIRECTED PRINTER TIMEOUT
  5407.     AX = 5FD0h
  5408. Return: CF clear if successful
  5409.         CX = redirected printer timeout in clock ticks of 55ms
  5410.         0000h if timeout disabled
  5411.     CF set on error
  5412.         AX = error code
  5413. SeeAlso: AX=5FD1h
  5414. --------N-215FD1-----------------------------
  5415. INT 21 - LANtastic - SET REDIRECTED PRINTER TIMEOUT
  5416.     AX = 5FD1h
  5417.     CX = printer timeout in clock ticks of 55ms, 0000h to disable timeouts
  5418. Return: CF clear if successful
  5419.     CF set on error
  5420.         AX = error code
  5421. SeeAlso: AX=5FD0h
  5422. --------N-215FE0-----------------------------
  5423. INT 21 C - LANtastic - GET DOS SERVICE VECTOR
  5424.     AX = 5FE0h
  5425. Return: CF clear if successful
  5426.         ES:BX -> current FAR service routine
  5427.     CF set on error
  5428.         AX = error code
  5429. Note:    the service routine is called by the LANtastic redirector whenever DOS
  5430.       may safely be called, permitting external TSRs and drivers to hook
  5431.       into LANtastic's DOS busy flag checking
  5432. SeeAlso: AX=5FE1h,INT 28,INT 2A/AH=84h
  5433. --------N-215FE1-----------------------------
  5434. INT 21 - LANtastic - SET DOS SERVICE VECTOR
  5435.     AX = 5FE1h
  5436.     ES:BX -> FAR routine to call when DOS services are available
  5437. Return: CF clear if successful
  5438.     CF set on error
  5439.         AX = error code
  5440. Note:    new handler must chain to previous handler as its first action
  5441. SeeAlso: AX=5FE0h
  5442. --------N-215FE2-----------------------------
  5443. INT 21 - LANtastic - GET MESSAGE SERVICE VECTOR
  5444.     AX = 5FE2h
  5445. Return: CF clear if successful
  5446.         ES:BX -> current FAR message service routine
  5447.     CF set on error
  5448.         AX = error code
  5449. SeeAlso: AX=5FE0h,AX=5FE3h
  5450. --------N-215FE3-----------------------------
  5451. INT 21 - LANtastic - SET MESSAGE SERVICE VECTOR
  5452.     AX = 5FE3h
  5453.     ES:BX -> FAR routine for processing network messages
  5454. Return: CF clear if successful
  5455.     CF set on error
  5456.         AX = error code
  5457. Notes:    handler must chain to previous handler as its first action
  5458.     on invocation, ES:BX -> just-received message
  5459. SeeAlso: AX=5FE2h
  5460. --------D-2160-------------------------------
  5461. INT 21 - DOS 3.0+ - "TRUENAME" - CANONICALIZE FILENAME OR PATH
  5462.     AH = 60h
  5463.     DS:SI -> ASCIZ filename or path
  5464.     ES:DI -> 128-byte buffer for canonicalized name
  5465. Return: CF set on error
  5466.         AX = error code
  5467.         02h invalid component in directory path or drive letter only
  5468.         03h malformed path or invalid drive letter
  5469.         ES:DI buffer unchanged
  5470.     CF clear if successful
  5471.         AH = 00h
  5472.         AL = destroyed (00h or 5Ch or last char of current dir on drive)
  5473.         buffer filled with qualified name of form D:\PATH\FILE.EXT or
  5474.           \\MACHINE\PATH\FILE.EXT
  5475. Desc:    determine the canonical name of the specified filename or path,
  5476.       corresponding to the undocumented TRUENAME command in COMMAND.COM
  5477. Notes:    the input path need not actually exist
  5478.     letters are uppercased, forward slashes converted to backslashes,
  5479.       asterisks converted to appropriate number of question marks, and
  5480.       file and directory names are truncated to 8.3 if necessary.  (DR-DOS
  5481.       3.41 and 5.0 do not expand asterisks)
  5482.     '.' and '..' in the path are resolved
  5483.     filespecs on local drives always start with "d:", those on network
  5484.       drives always start with "\\"
  5485.     if path string is on a JOINed drive, the returned name is the one that
  5486.       would be needed if the drive were not JOINed; similarly for a
  5487.       SUBSTed, ASSIGNed, or network drive letter.    Because of this, it is
  5488.       possible to get a qualified name that is not legal under the current
  5489.       combination of SUBSTs, ASSIGNs, JOINs, and network redirections
  5490.     under DOS 3.3 through 6.00, a device name is translated differently if
  5491.       the device name does not have an explicit directory or the directory
  5492.       is \DEV (relative directory DEV from the root directory works
  5493.       correctly).  In these cases, the returned string consists of the
  5494.       unchanged device name and extension appended to the string X:/
  5495.       (forward slash instead of backward slash as in all other cases) where
  5496.       X is the default or explicit drive letter.
  5497.     functions which take pathnames require canonical paths if invoked via
  5498.       INT 21/AX=5D00h
  5499.     supported by OS/2 v1.1 compatibility box
  5500.     NetWare 2.1x does not support characters with the high bit set; early
  5501.       versions of NetWare 386 support such characters except in this call.
  5502.       In addition, NetWare returns error code 3 for the path "X:\"; one
  5503.       should use "X:\." instead.
  5504.     for DOS 3.3-6.0, the input and output buffers may be the same, as the
  5505.       canonicalized name is built in an internal buffer and copied to the
  5506.       specified output buffer as the very last step
  5507.     for DR DOS 6.0, this function is not automatically called when on a
  5508.       network.  Device drivers reportedly cannot make this call from their
  5509.       INIT function.  Using the same pointer for both input and output
  5510.       buffers is not supported in the April 1992 and earlier versions of
  5511.       DR DOS
  5512. SeeAlso: AX=5FB3h,INT 2F/AX=1123h,INT 2F/AX=1221h
  5513. --------D-2161-------------------------------
  5514. INT 21 - DOS 3+ - UNUSED
  5515.     AH = 61h
  5516. Return: AL = 00h
  5517. Note:    this function does nothing and returns immediately
  5518. --------O-2161--BP6467-----------------------
  5519. INT 21 U - OS/2 v1.x FAPI - OS/2 FILE SYSTEM JOIN/SUBST
  5520.     AH = 61h
  5521.     BP = 6467h ("dg")
  5522.     AL = function
  5523.         00h list
  5524.         01h add
  5525.         02h delete
  5526.     BX = drive number
  5527.     CX = size of buffer
  5528.     SI = type (0002h JOIN, 0003h SUBST)
  5529.     ES:DI -> buffer
  5530. Return: ???
  5531. Notes:    used by JOIN and SUBST to communicate with the OS/2 file system
  5532.     also supported by OS/2 v2.0+ Virtual DOS Machines
  5533. --------D-2162-------------------------------
  5534. INT 21 - DOS 3+ - GET CURRENT PSP ADDRESS
  5535.     AH = 62h
  5536. Return: BX = segment of PSP for current process
  5537. Notes:    under DOS 3+, this function does not use any of the DOS-internal stacks
  5538.       and may thus be called at any time, even during another INT 21h call
  5539.     the current PSP is not necessarily the caller's PSP
  5540.     identical to the undocumented AH=51h
  5541. SeeAlso: AH=50h,AH=51h
  5542. --------D-216300-----------------------------
  5543. INT 21 - DOS 2.25 only - GET LEAD BYTE TABLE ADDRESS
  5544.     AX = 6300h
  5545. Return: CF clear if successful
  5546.         DS:SI -> lead byte table (see #0835)
  5547.     CF set on error
  5548.         AX = error code (01h) (see #0770 at AH=59h)
  5549. Notes:    does not preserve any registers other than SS:SP
  5550.     the US version of MS-DOS 3.30 treats this as an unused function,
  5551.       setting AL=00h and returning immediately
  5552. SeeAlso: AX=6301h,AH=07h,AH=08h,AH=0Bh
  5553.  
  5554. Format of double-byte character set lead byte table entry:
  5555. Offset    Size    Description    (Table 0835)
  5556.  00h  2 BYTEs    low/high ends of a range of leading byte of double-byte chars
  5557.  02h  2 BYTEs    low/high ends of a range of leading byte of double-byte chars
  5558.     ...
  5559.   N   2 BYTEs    00h,00h end flag
  5560. --------D-216300-----------------------------
  5561. INT 21 - Far East DOS 3.2+ - GET DOUBLE BYTE CHARACTER SET LEAD-BYTE TABLE
  5562.     AX = 6300h
  5563. Return: AL = error code
  5564.         00h successful
  5565.         DS:SI -> DBCS table (see #0836)
  5566.         all other registers except CS:IP and SS:SP destroyed
  5567.         FFh not supported
  5568. Notes:    probably identical to AH=63h/AL=00h for DOS 2.25
  5569.     the US version of MS-DOS 3.30 treats this as an unused function,
  5570.       setting AL=00h and returning immediately
  5571.     the US version of DOS 4.0+ accepts this function, but returns an empty
  5572.       list
  5573. SeeAlso: AX=6300h"DOS 2.25"
  5574.  
  5575. Format of DBCS table:
  5576. Offset    Size    Description    (Table 0836)
  5577.  00h  2 BYTEs    low/high ends of a range of leading byte of double-byte chars
  5578.  02h  2 BYTEs    low/high ends of a range of leading byte of double-byte chars
  5579.     ...
  5580.   N   2 BYTEs    00h,00h end flag
  5581. --------D-216301-----------------------------
  5582. INT 21 - DOS 2.25, Far East DOS 3.2+ - SET KOREAN (HANGEUL) INPUT MODE
  5583.     AX = 6301h
  5584.     DL = new mode
  5585.         00h return only full characters on DOS keyboard input functions
  5586.         01h return partially-formed (interim) characters also
  5587. Return: AL = status
  5588.         00h successful
  5589.         FFh invalid mode
  5590. Note:    Novell DOS 7 simply stores DL in the caller's PSP (see #0498 at AH=26h)
  5591. SeeAlso: AH=07h,AH=08h,AH=0Bh,AH=63h,AX=6302h
  5592. --------D-216302-----------------------------
  5593. INT 21 - DOS 2.25, Far East DOS 3.2+ - GET KOREAN (HANGEUL) INPUT MODE
  5594.     AX = 6302h
  5595. Return: AL = status
  5596.         00h successful
  5597.         DL = current input mode
  5598.             00h return only full characters (clears interim flag)
  5599.             01h return partial characters (sets interim flag)
  5600.         FFh not supported
  5601. Note:    Novell DOS 7 simply reads the value out of the caller's PSP, so it
  5602.       can return values other than 00h or 01h if the last call to AX=6301h
  5603.       used another value
  5604. SeeAlso: AH=07h,AH=08h,AH=0Bh,AH=63h,AX=6301h
  5605. --------D-2164-------------------------------
  5606. INT 21 - DOS 3.2+ internal - SET DEVICE DRIVER LOOKAHEAD FLAG
  5607.     AH = 64h
  5608.     AL = flag
  5609.         00h (default) call device driver function 5 (non-dest read)
  5610.             before INT 21/AH=01h,08h,0Ah
  5611.         nonzero don't call driver function 5
  5612. Return: nothing (MS-DOS)
  5613.     CF set, AX=error code??? (DR-DOS 5.0, which does not support this call)
  5614. Notes:    this function is called by the DOS 3.3+ PRINT.COM
  5615.     under MS-DOS, this function does not use any of the DOS-internal stacks
  5616.       and may thus be called at any time, even during another DOS call
  5617. SeeAlso: AH=01h,AH=08h,AH=0Ah,AX=5D06h
  5618. --------O-2164--DX0000-----------------------
  5619. INT 21 U - OS/2 v2.0+ Virtual DOS Machine - ENABLE AUTOMATIC TITLE SWITCH
  5620.     AH = 64h
  5621.     DX = 0000h (function number)
  5622.     CX = 636Ch (magic value, "cl")
  5623.     BX = 0000h (indicates special request)
  5624. Note:    if CX is not 636Ch on entry, INT 21/AH=6Ch is invoked, because a bug
  5625.       in OS/2 1.x FAPI erroneously called AH=64h instead of AH=6Ch
  5626. SeeAlso: AH=64h/BX=0001h,INT 21/AH=4Bh
  5627. --------O-2164--DX0001-----------------------
  5628. INT 21 U - OS/2 v2.0+ Virtual DOS Machine - SET SESSION TITLE
  5629.     AH = 64h
  5630.     DX = 0001h (function number)
  5631.     CX = 636Ch (magic value, "cl")
  5632.     BX = 0000h (indicates special request)
  5633.     ES:DI -> new ASCIZ title (max 12 char) or "" to restore default title
  5634. Note:    if CX is not 636Ch on entry, INT 21/AH=6Ch is invoked, because a bug
  5635.       in OS/2 1.x FAPI erroneously called AH=64h instead of AH=6Ch
  5636. SeeAlso: AH=64h/BX=0000h,AH=64h/BX=0002h,INT 15/AH=12h/BH=05h
  5637. --------O-2164--DX0002-----------------------
  5638. INT 21 U - OS/2 v2.0+ Virtual DOS Machine - GET SESSION TITLE
  5639.     AH = 64h
  5640.     DX = 0002h (function number)
  5641.     CX = 636Ch (magic value, "cl")
  5642.     BX = 0000h (indicates special request)
  5643.     ES:DI -> 13-byte buffer for current title
  5644. Return: buffer filled (single 00h if title never changed)
  5645. Note:    if CX is not 636Ch on entry, INT 21/AH=6Ch is invoked, because a bug
  5646.       in OS/2 1.x FAPI erroneously called AH=64h instead of AH=6Ch
  5647. SeeAlso: AH=64h/BX=0000h,AH=64h/BX=0001h,INT 15/AH=12h/BH=05h
  5648. --------O-2164--DX0003-----------------------
  5649. INT 21 U - OS/2 v2.1+ Virtual DOS Machine - GET LASTDRIVE
  5650.     AH = 64h
  5651.     DX = 0003h (function number)
  5652.     CX = 636Ch (magic value, "cl")
  5653.     BX = 0000h (indicates special request)
  5654. Return: AL = highest drive supported
  5655. Notes:    if CX is not 636Ch on entry, INT 21/AH=6Ch is invoked, because a bug
  5656.       in OS/2 1.x FAPI erroneously called AH=64h instead of AH=6Ch
  5657.     used by WinOS2
  5658. --------O-2164--DX0004-----------------------
  5659. INT 21 U - OS/2 v2.1+ Virtual DOS Machine - GET SIZE OF PTDA JFT
  5660.     AH = 64h
  5661.     DX = 0004h (function number)
  5662.     CX = 636Ch (magic value, "cl")
  5663.     BX = 0000h (indicates special request)
  5664. Return: AX = number of entries in OS/2 JFT for VDM
  5665. Notes:    if CX is not 636Ch on entry, INT 21/AH=6Ch is invoked, because a bug
  5666.       in OS/2 1.x FAPI erroneously called AH=64h instead of AH=6Ch
  5667.     in an OS/2 VDM, the DOS Job File Table in the PSP contains an index
  5668.       into the OS/2 JFT in the Per-Task Data Area rather than an SFT index
  5669.       because the OS/2 SFT can contain more than 255 entries
  5670. --------O-2164--DX0005-----------------------
  5671. INT 21 U - OS/2 v2.1+ Virtual DOS Machine - GET SECOND SFT FLAGS WORD
  5672.     AH = 64h
  5673.     DX = 0005h (function number)
  5674.     CX = 636Ch (magic value, "cl")
  5675.     BX = 0000h (indicates special request)
  5676.     DI = DOS file handle
  5677. Return: AX = value of second flags word from OS/2 SFT entry for file
  5678. Notes:    if CX is not 636Ch on entry, INT 21/AH=6Ch is invoked, because a bug
  5679.       in OS/2 1.x FAPI erroneously called AH=64h instead of AH=6Ch
  5680.     the OS/2 SFT has two flags words rather than DOS's one word, and this
  5681.       function provides access to the word which is not present in DOS
  5682. --------O-2164--DX0006-----------------------
  5683. INT 21 U - OS/2 v2.1+ Virtual DOS Machine - UNLOAD DOSKRNL SYMBOLS & LOAD PROGR
  5684.     AH = 64h
  5685.     DX = 0006h (function number)
  5686.     CX = 636Ch (magic value, "cl")
  5687.     BX = 0000h (indicates special request)
  5688.     ES:DI -> ASCIZ filespec
  5689.     DS = base address for loading
  5690. Notes:    if CX is not 636Ch on entry, INT 21/AH=6Ch is invoked, because a bug
  5691.       in OS/2 1.x FAPI erroneously called AH=64h instead of AH=6Ch
  5692.     this function is only supported by the kernel debugging version of
  5693.       OS2KRNL
  5694. --------O-2164--DX0007-----------------------
  5695. INT 21 U - OS/2 v2.1+ Virtual DOS Machine - GET WinOS2 CALL GATE ADDRESS
  5696.     AH = 64h
  5697.     DX = 0007h (function number)
  5698.     CX = 636Ch (magic value, "cl")
  5699.     BX = 0000h (indicates special request)
  5700. Return: AX = call gate address
  5701. Notes:    if CX is not 636Ch on entry, INT 21/AH=6Ch is invoked, because a bug
  5702.       in OS/2 1.x FAPI erroneously called AH=64h instead of AH=6Ch
  5703.     used by WinOS2 to make direct calls to OS2KRNL, bypassing the overhead
  5704.       of DOSKRNL
  5705. --------O-2164--DX0008-----------------------
  5706. INT 21 U - OS/2 v2.1+ Virtual DOS Machine - GET LOADING MESSAGE
  5707.     AH = 64h
  5708.     DX = 0008h (function number)
  5709.     CX = 636Ch (magic value, "cl")
  5710.     BX = 0000h (indicates special request)
  5711. Return: DS:DX -> '$'-terminated message "Loading.  Please wait."
  5712. Notes:    if CX is not 636Ch on entry, INT 21/AH=6Ch is invoked, because a bug
  5713.       in OS/2 1.x FAPI erroneously called AH=64h instead of AH=6Ch
  5714.     this function permits National Language Support for the initial message
  5715.       displayed while WinOS2 starts a full-screen session
  5716. --------O-2164--CX636C-----------------------
  5717. INT 21 U - OS/2 v2.1+ Virtual DOS Machine - OS/2 API support
  5718.     AH = 64h
  5719.     CX = 636Ch ("cl")
  5720.     BX = API ordinal (see #0837)
  5721.     other registers as appropriate for API call
  5722. Return: as appropriate for API call
  5723. SeeAlso: AH=64h/BX=0025h,AH=64h/BX=00B6h,AH=64h/BX=00CBh
  5724.  
  5725. (Table 0837)
  5726. Values for OS/2 API ordinal:
  5727.  0025h    DOS32StartSession
  5728.  0082h    DosGetCP
  5729.  00B6h    DosQFSAttach
  5730.  00BFh    DosEditName
  5731.  00CBh    DosForceDelete
  5732.  0144h    Dos32CreateEventSem
  5733.  0145h    Dos32OpenEvenSem
  5734.  0146h    Dos32CloseEventSem
  5735.  0147h    Dos32ResetEventSem
  5736.  0148h    Dos32PostEventSem
  5737.  0149h    Dos32WaitEventSem
  5738.  014Ah    Dos32QueryEventSem
  5739.  014Bh    Dos32CreateMutexSem
  5740.  014Ch    Dos32OpenMutexSem
  5741.  014Dh    Dos32CloseMutexSem
  5742.  014Eh    Dos32RequestMutexSem
  5743.  014Fh    Dos32ReleaseMutexSem
  5744.  0150h    Dos32QueryMutexSem
  5745.  0151h    Dos32CreateMuxWaitSem
  5746.  0152h    Dos32OpenMuxWaitSem
  5747.  0153h    Dos32CloseMuxWaitSem
  5748.  0154h    Dos32WaitMuxWaitSem
  5749.  0155h    Dos32AddMuxWaitSem
  5750.  0156h    Dos32DeleteMuxWaitSem
  5751.  0157h    Dos32QueryMuxWaitSem
  5752. --------O-2164--BX0025-----------------------
  5753. INT 21 U - OS/2 v2.1+ Virtual DOS Machine - OS/2 API DOS32StartSession
  5754.     AH = 64h
  5755.     BX = 0025h (API ordinal)
  5756.     CX = 636Ch ("cl")
  5757.     DS:SI -> STARTDATA structure (see #0838)
  5758. Return: AX = return code
  5759. SeeAlso: AH=64h/CX=636Ch,AH=64h/BX=00B6h
  5760.  
  5761. Format of OS/2 Virtual DOS Machine STARTDATA structure:
  5762. Offset    Size    Description    (Table 0838)
  5763.  00h    WORD    length of structure (must be 0018h,001Eh,0020h,0032h,or 003Ch)
  5764.  02h    WORD    relation of new process to caller (00h independent, 01h child)
  5765.  04h    WORD    fore/background (00h foreground, 01h background)
  5766.  06h    WORD    trace options (00h-02h, 00h = no trace)
  5767.  08h    DWORD    pointer to ASCIZ program title (max 62 chars) or 0000h:0000h
  5768.  0Ch    DWORD    pointer to ASCIZ program name (max 128 chars) or 0000h:0000h
  5769.  10h    DWORD    pointer to ASCIZ program args (max 144 chars) or 0000h:0000h
  5770.  14h    DWORD    "TermQ" (currently reserved, must be 00000000h)
  5771.  18h    DWORD    pointer to environment (max 486 bytes) or 0000h:0000h
  5772.  1Ch    WORD    inheritance (00h or 01h)
  5773.  1Eh    WORD    session type
  5774.         00h OS/2 session manager determines type (default)
  5775.         01h OS/2 full-screen
  5776.         02h OS/2 window
  5777.         03h PM
  5778.         04h VDM full-screen
  5779.         07h VDM window
  5780.  20h    DWORD    pointer to ASCIZ icon filename (max 128 chars) or 0000h:0000h
  5781.  24h    DWORD    "PgmHandle" (currently reserved, must be 00000000h)
  5782.  28h    WORD    "PgmControl"
  5783.  2Ah    WORD    initial column
  5784.  2Ch    WORD    initial row
  5785.  2Eh    WORD    initial width
  5786.  30h    WORD    initial height
  5787.  32h    WORD    reserved (0)
  5788.  34h    DWORD    "ObjectBuffer" (currently reserved, must be 00000000h)
  5789.  38h    DWORD    "ObjectBufferLen" (currently reserved, must be 00000000h)
  5790. --------O-2164--BX00B6-----------------------
  5791. INT 21 U - OS/2 v2.1+ Virtual DOS Machine - OS/2 API DosQFSAttach
  5792.     AH = 64h
  5793.     BX = 00B6h (API ordinal)
  5794.     CX = 636Ch (magic value "cl")
  5795.     DS = user's data segment
  5796.     ES:DI -> FSQAttachStruc (see #0839)
  5797. Return: CF set on error
  5798.         AX = error code (see #0770 at AH=59h)
  5799.     CF clear if successful
  5800.         AX = 0000h
  5801.         data buffer filled
  5802. SeeAlso: AH=64h/CX=636Ch
  5803.  
  5804. Format of OS/2 Virtual DOS Machine FSQAttachStruc:
  5805. Offset    Size    Description    (Table 0839)
  5806.  00h    DWORD    reserved
  5807.  04h    DWORD    pointer to the offset of the data buffer length
  5808.  08h    DWORD    pointer to the offset of the data buffer
  5809.  0Ch    WORD    FSA Info level
  5810.  0Eh    WORD    ordinal index into table
  5811.  10h    DWORD    pointer to the offset of the device name
  5812. Notes:    The segment value of the buffer, buffer length, and device
  5813.       name MUST all be the same.  It is defined on entry in the DS
  5814.       register.  The details of each info level are defined in the
  5815.       OS/2 CP Reference.
  5816. --------O-2164--BX00CB-----------------------
  5817. INT 21 U - OS/2 v2.1+ Virtual DOS Machine - OS/2 API DosForceDelete
  5818.     AH = 64h
  5819.     BX = 00CBh (API ordinal)
  5820.     CX = 636Ch (magic value "cl")
  5821.     DS:DX -> ASCIZ filename
  5822. Return: CF clear if successful
  5823.         AX destroyed
  5824.     CF set on error
  5825.         AX = error code (02h,03h,05h) (see #0770 at AH=59h)
  5826. Desc:    delete a file without saving it to the undelete directory
  5827. SeeAlso: AH=41h,AH=64h/CX=636Ch
  5828. --------D-2165-------------------------------
  5829. INT 21 - DOS 3.3+ - GET EXTENDED COUNTRY INFORMATION
  5830.     AH = 65h
  5831.     AL = info ID
  5832.         01h get general internationalization info
  5833.         02h get pointer to uppercase table
  5834.         04h get pointer to filename uppercase table
  5835.         05h get pointer to filename terminator table
  5836.         06h get pointer to collating sequence table
  5837.         07h (DOS 4+) get pointer to Double-Byte Character Set table
  5838.     BX = code page (FFFFh=global code page)
  5839.     DX = country ID (FFFFh=current country)
  5840.     ES:DI -> country information buffer (see #0840)
  5841.     CX = size of buffer (>= 5)
  5842. Return: CF set on error
  5843.         AX = error code (see #0770 at AH=59h)
  5844.     CF clear if successful
  5845.         CX = size of country information returned
  5846.         ES:DI -> country information
  5847. Notes:    AL=05h appears to return same info for all countries and codepages; it
  5848.       has been documented for DOS 5+, but was undocumented in ealier
  5849.       versions
  5850.     NLSFUNC must be installed to get info for countries other than the
  5851.       default
  5852.     subfunctions 02h and 04h are identical under OS/2
  5853. SeeAlso: AH=38h,INT 2F/AX=1401h,INT 2F/AX=1402h,INT 2F/AX=14FEh
  5854.  
  5855. Format of country information:
  5856. Offset    Size    Description    (Table 0840)
  5857.  00h    BYTE    info ID
  5858. ---if info ID = 01h---
  5859.  01h    WORD    size
  5860.  03h    WORD    country ID
  5861.  05h    WORD    code page
  5862.  07h 34 BYTEs    country-dependent info (see AH=38h)
  5863. ---if info ID = 02h---
  5864.  01h    DWORD    pointer to uppercase table (see #0841)
  5865. ---if info ID = 04h---
  5866.  01h    DWORD    pointer to filename uppercase table (see #0842)
  5867. ---if info ID = 05h---
  5868.  01h    DWORD    pointer to filename character table (see #0843)
  5869. ---if info ID = 06h---
  5870.  01h    DWORD    pointer to collating table (see #0844)
  5871. ---if info ID = 07h (DOS 4+)---
  5872.  01h    DWORD    pointer to DBCS lead byte table (see #0845)
  5873.  
  5874. Format of uppercase table:
  5875. Offset    Size    Description    (Table 0841)
  5876.  00h    WORD    table size
  5877.  02h 128 BYTEs    uppercase equivalents (if any) of chars 80h to FFh
  5878.  
  5879. Format of filename uppercase table:
  5880. Offset    Size    Description    (Table 0842)
  5881.  00h    WORD    table size
  5882.  02h 128 BYTEs    uppercase equivalents (if any) of chars 80h to FFh
  5883.  
  5884. Format of filename terminator table:
  5885. Offset    Size    Description    (Table 0843)
  5886.  00h    WORD    table size (not counting this word)
  5887.  02h    BYTE    ??? (01h for MS-DOS 3.30-6.00)
  5888.  03h    BYTE    lowest permissible character value for filename
  5889.  04h    BYTE    highest permissible character value for filename
  5890.  05h    BYTE    ??? (00h for MS-DOS 3.30-6.00)
  5891.  06h    BYTE    first excluded character in range \ all characters in this
  5892.  07h    BYTE    last excluded character in range  / range are illegal
  5893.  08h    BYTE    ??? (02h for MS-DOS 3.30-6.00)
  5894.  09h    BYTE    number of illegal (terminator) characters
  5895.  0Ah  N BYTEs    characters which terminate a filename:    ."/\[]:|<>+=;,
  5896. Note:    partially documented for DOS 5+, but undocumented for earlier versions
  5897.  
  5898. Format of collating table:
  5899. Offset    Size    Description    (Table 0844)
  5900.  00h    WORD    table size
  5901.  02h 256 BYTEs    values used to sort characters 00h to FFh
  5902.  
  5903. Format of DBCS lead byte table:
  5904. Offset    Size    Description    (Table 0845)
  5905.  00h    WORD    length
  5906.  02h 2N BYTEs    start/end for N lead byte ranges
  5907.     WORD    0000h    (end of table)
  5908. --------D-2165-------------------------------
  5909. INT 21 - DOS 4+ - COUNTRY-DEPENDENT CHARACTER CAPITALIZATION
  5910.     AH = 65h
  5911.     AL = function
  5912.         20h capitalize character
  5913.         DL = character to capitalize
  5914.         Return: DL = capitalized character
  5915.         21h capitalize string
  5916.         DS:DX -> string to capitalize
  5917.         CX = length of string
  5918.         22h capitalize ASCIZ string
  5919.         DS:DX -> ASCIZ string to capitalize
  5920. Return: CF set on error
  5921.         AX = error code (see #0770 at AH=59h)
  5922.     CF clear if successful
  5923. Note:    these calls have been documented for DOS 5+, but were undocumented in
  5924.       DOS 4.x.
  5925. --------D-216523-----------------------------
  5926. INT 21 U - DOS 4+ internal - DETERMINE IF CHARACTER REPRESENTS YES/NO RESPONSE
  5927.     AX = 6523h
  5928.     DL = character
  5929.     DH = second character of double-byte character (if applicable)
  5930. Return: CF set on error
  5931.     CF clear if successful
  5932.         AX = type
  5933.         00h no
  5934.         01h yes
  5935.         02h neither yes nor no
  5936. --------D-2165-------------------------------
  5937. INT 21 U - DOS 4+ internal - COUNTRY-DEPENDENT FILENAME CAPITALIZATION
  5938.     AH = 65h
  5939.     AL = function
  5940.         A0h capitalize filename character
  5941.         DL = character to capitalize
  5942.         Return: DL = capitalized character
  5943.         A1h capitalize counted filename string
  5944.         DS:DX -> filename string to capitalize
  5945.         CX = length of string
  5946.         A2h capitalize ASCIZ filename
  5947.         DS:DX -> ASCIZ filename to capitalize
  5948. Return: CF set on error
  5949.         AX = error code (see #0770 at AH=59h)
  5950.     CF clear if successful
  5951. Note:    nonfunctional in DOS 4.00 through 6.00 due to a bug (the code sets a
  5952.       pointer depending on the high bit of AL, but doesn't clear the
  5953.       bit before branching by function number).
  5954. --------D-216601-----------------------------
  5955. INT 21 - DOS 3.3+ - GET GLOBAL CODE PAGE TABLE
  5956.     AX = 6601h
  5957. Return: CF set on error
  5958.         AX = error code (see #0770 at AH=59h)
  5959.     CF clear if successful
  5960.         BX = active code page (see #0846)
  5961.         DX = system code page (see #0846)
  5962. SeeAlso: AX=6602h
  5963. --------D-216602-----------------------------
  5964. INT 21 - DOS 3.3+ - SET GLOBAL CODE PAGE TABLE
  5965.     AX = 6602h
  5966.     BX = active code page (see #0846)
  5967.     DX = system code page (active page at boot time)
  5968. Return: CF set on error
  5969.         AX = error code (see #0770 at AH=59h)
  5970.     CF clear if successful
  5971. SeeAlso: AX=6601h,INT 2F/AX=14FFh
  5972.  
  5973. (Table 0846)
  5974. Values for code page:
  5975.  437    US
  5976.  850    Multilingual
  5977.  852    Slavic/Latin II (DOS 5+)
  5978.  857    Turkish
  5979.  860    Portugal
  5980.  861    Iceland
  5981.  863    Canada (French)
  5982.  865    Norway/Denmark
  5983. --------D-2167-------------------------------
  5984. INT 21 - DOS 3.3+ - SET HANDLE COUNT
  5985.     AH = 67h
  5986.     BX = size of new file handle table for process
  5987. Return: CF clear if successful
  5988.     CF set on error
  5989.         AX = error code (see #0770 at AH=59h)
  5990. Desc:    adjust the size of the per-process open file table, thus raising or
  5991.       lowering the limit on the number of files the caller can open
  5992.       simultaneously
  5993. Notes:    if BX <= 20, no action is taken if the handle limit has not yet been
  5994.       increased, and the table is copied back into the PSP if the limit
  5995.       is currently > 20 handles
  5996.     for file handle tables of > 20 handles, DOS 3.30 never reuses the
  5997.       same memory block, even if the limit is being reduced; this can lead
  5998.       to memory fragmentation as a new block is allocated and the existing
  5999.       one freed
  6000.     only the first 20 handles are copied to child processes in DOS 3.3-6.0
  6001.     increasing the file handles here will not, in general, increase the
  6002.       number of files that can be opened using the runtime library of a
  6003.       high-level language such as C
  6004. BUGS:    the original release of DOS 3.30 allocates a full 64K for the handle
  6005.       table on requests for an even number of handles
  6006.     DR-DOS 3.41 and 5.0 will lose track of any open file handles beyond
  6007.       the portion of the JFT retained after the call; MS-DOS will indicate
  6008.       error 04h if any of the JFT entries to be removed are open
  6009. SeeAlso: AH=26h,AH=86h
  6010. --------D-2168-------------------------------
  6011. INT 21 - DOS 3.3+ - "FFLUSH" - COMMIT FILE
  6012.     AH = 68h
  6013.     BX = file handle
  6014. Return: CF clear if successful
  6015.         all data still in DOS disk buffers is written to disk immediately,
  6016.           and the file's directory entry is updated
  6017.     CF set on error
  6018.         AX = error code (see #0770 at AH=59h)
  6019. SeeAlso: AX=5D01h,AH=6Ah,INT 2F/AX=1107h
  6020. --------D-2169-------------------------------
  6021. INT 21 U - DOS 4+ internal - GET/SET DISK SERIAL NUMBER
  6022.     AH = 69h
  6023.     AL = subfunction
  6024.         00h get serial number
  6025.         01h set serial number
  6026.     BL = drive (0=default, 1=A, 2=B, etc)
  6027.     DS:DX -> disk info (see #0847)
  6028. Return: CF set on error
  6029.         AX = error code (see #0770 at AH=59h)
  6030.     CF clear if successful
  6031.         AX destroyed
  6032.         (AL = 00h) buffer filled with appropriate values from extended BPB
  6033.         (AL = 01h) extended BPB on disk set to values from buffer
  6034. Notes:    does not generate a critical error; all errors are returned in AX
  6035.     error 0005h given if no extended BPB on disk
  6036.     does not work on network drives (error 0001h)
  6037.     buffer after first two bytes is exact copy of bytes 27h thru 3Dh of
  6038.       extended BPB on disk
  6039.     this function is supported under Novell NetWare versions 2.0A through
  6040.       3.11; the returned serial number is the one a DIR would display,
  6041.       the volume label is the NetWare volume label, and the file system
  6042.       is set to "FAT16".
  6043.     the serial number is computed from the current date and time when the
  6044.       disk is created; the first part is the sum of the seconds/hundredths
  6045.       and month/day, the second part is the sum of the hours/minutes and
  6046.       year
  6047.     the volume label which is read or set is the one stored in the extended
  6048.       BPB on disks formatted with DOS 4.0+, rather than the special root
  6049.       directory entry used by the DIR command in COMMAND.COM (use AH=11h
  6050.       to find that volume label)
  6051. SeeAlso: AX=440Dh
  6052.  
  6053. Format of disk info:
  6054. Offset    Size    Description    (Table 0847)
  6055.  00h    WORD    info level (zero)
  6056.  02h    DWORD    disk serial number (binary)
  6057.  06h 11 BYTEs    volume label or "NO NAME    " if none present
  6058.  11h  8 BYTEs    (AL=00h only) filesystem type--string "FAT12   " or "FAT16   "
  6059. --------O-2169-------------------------------
  6060. INT 21 - DR-DOS 5.0 - NULL FUNCTION
  6061.     AH = 69h
  6062. Return: AL = 00h
  6063. SeeAlso: AH=18h
  6064. --------v-216969-----------------------------
  6065. INT 21 - VIRUS - "Rape-747" - INSTALLATION CHECK
  6066.     AX = 6969h
  6067. Return: AX = 0666h if resident
  6068. SeeAlso: AX=58CCh,AH=76h"VIRUS"
  6069. --------d-2169FFDX0000-----------------------
  6070. INT 21 U - CUBIT v4.00 - GET CUBIT INT 21 HANDLER
  6071.     AX = 69FFh
  6072.     DX = 0000h
  6073.     BX = CB00h (magic value)
  6074. Return: ES:BX -> CUBITR.EXE handler for INT 21
  6075. Note:    the installation check consists of testing that the first eight bytes
  6076.       at the returned interrupt handler are EBh 07h "CUBITR" (a short
  6077.       jump around the signature followed by the signature); the byte
  6078.       following the signature (i.e. ES:[BX+8]) indicates whether CUBITR
  6079.       is active (01h) or disabled (00h)
  6080. SeeAlso: AX=69FFh/DX=CFBFh
  6081. Index:    installation check;CUBIT
  6082. --------d-2169FFDXCFBF-----------------------
  6083. INT 21 U - CUBIT v4.00 - UNINSTALL
  6084.     AX = 69FFh
  6085.     DX = CFBFh
  6086.     CX = EFCFh
  6087.     BX = CB00h (magic value)
  6088. Return: ES:BX -> CUBITR.EXE handler for INT 21
  6089.     CX = status
  6090.         2020h successful
  6091.         2222h failed
  6092. Note:    if DX is neither 0000h nor CFBFh on entry, some other code is executed
  6093. SeeAlso: AX=69FFh/DX=0000h
  6094. --------D-216A-------------------------------
  6095. INT 21 U - DOS 4+ - COMMIT FILE
  6096.     AH = 6Ah
  6097.     BX = file handle
  6098. Return: CF clear if successful
  6099.         AH = 68h
  6100.     CF set on error
  6101.         AX = error code (06h) (see #0770 at AH=59h)
  6102. Note:    identical to AH=68h in DOS 5.0-6.0; not known whether this is the case
  6103.       in DOS 4.x
  6104. SeeAlso: AH=68h
  6105. --------D-216B-------------------------------
  6106. INT 21 U - DOS 4.0 internal - IFS IOCTL
  6107.     AH = 6Bh
  6108.     AL = subfunction
  6109.         00h ???
  6110.         DS:SI -> Current Directory Structure???
  6111.         CL = drive (1=A:)
  6112.         01h ???
  6113.         DS:SI -> ???
  6114.         CL = file handle???
  6115.         02h ???
  6116.         DS:SI -> Current Directory Structure???
  6117.         DI = ???
  6118.         CX = drive (1=A:)
  6119. Return: CF set on error
  6120.         AX = error code (see #0770 at INT 21/AH=59h)
  6121.     CF clear if successful
  6122. Note:    passed through to INT 2F/AX=112Fh with AX on top of stack
  6123. SeeAlso: AH=6Bh"DOS 5",INT 2F/AX=112Fh
  6124. --------D-216B-------------------------------
  6125. INT 21 U - DOS 5+ - NULL FUNCTION
  6126.     AH = 6Bh
  6127. Return: AL = 00h
  6128. Note:    this function does nothing and returns immediately
  6129. SeeAlso: AH=6Bh"DOS 4"
  6130. --------D-216C00-----------------------------
  6131. INT 21 - DOS 4+ - EXTENDED OPEN/CREATE
  6132.     AX = 6C00h
  6133.     BL = open mode as in AL for normal open (see also AH=3Dh)
  6134.         bit 7: inheritance
  6135.         bits 4-6: sharing mode
  6136.         bit 3 reserved
  6137.         bits 0-2: access mode
  6138.     BH = flags
  6139.         bit 6 = auto commit on every write (see also AH=68h)
  6140.         bit 5 = return error rather than doing INT 24h
  6141.     CX = create attribute (see #0849)
  6142.     DL = action if file exists/does not exist (see #0850)
  6143.     DH = 00h (reserved)
  6144.     DS:SI -> ASCIZ file name
  6145. Return: CF set on error
  6146.        AX = error code (see #0770 at AH=59h)
  6147.     CF clear if successful
  6148.        AX = file handle
  6149.        CX = status (see #0848)
  6150. Notes:    the PC LAN Program only supports DL=01h, DL=10h/sharing=compatibility,
  6151.       and DL=12h
  6152.      DR-DOS reportedly does not support this function and does not return
  6153.        an "invalid function call" error when this function is used.
  6154. BUG:     this function has bugs (at least in DOS 5.0 and 6.2) when used with
  6155.        drives handled via the network redirector (INT 2F/AX=112Eh):
  6156.          - CX (attribute) is not passed to the redirector if DL=11h,
  6157.          - CX does not return the status, it is returned unchanged because
  6158.            DOS does a PUSH CX/POP CX when calling the redirector.
  6159. SeeAlso: AH=3Ch,AH=3Dh,AX=6C01h,AH=71h,INT 2F/AX=112Eh
  6160.  
  6161. (Table 0848)
  6162. Values for extended open function status:
  6163.  01h    file opened
  6164.  02h    file created
  6165.  03h    file replaced
  6166.  
  6167. Bitfields for file create attribute:
  6168. Bit(s)    Description    (Table 0849)
  6169.  6-15    reserved
  6170.  5    archive
  6171.  4    reserved
  6172.  3    volume label
  6173.  2    system
  6174.  1    hidden
  6175.  0    readonly
  6176.  
  6177. Bitfields for action:
  6178. Bit(s)    Description    (Table 0850)
  6179.  7-4    action if file does not exist
  6180.     0000 fail
  6181.     0001 create
  6182.  3-0    action if file exists
  6183.     0000 fail
  6184.     0001 open
  6185.     0010 replace/open
  6186. --------O-216C01-----------------------------
  6187. INT 21 U - OS/2 v2.0 - "DosOpen2"
  6188.     AX = 6C01h
  6189.     ???
  6190. Return: ???
  6191. Note:    this function is similar to AX=6C00h, but supports OS/2's extended
  6192.       attributes
  6193. SeeAlso: AX=5704h,AX=6C00h,AH=6Fh"OS/2"
  6194. --------D-216D-------------------------------
  6195. INT 21 U - DOS 5+ ROM - FIND FIRST ROM PROGRAM
  6196.     AH = 6Dh
  6197.     DS:DX -> ASCIZ program name (may contain wildcrds)
  6198. Return: CF clear if found
  6199.         [DTA] = ROM search structure (see #0851)
  6200.     CF set if not found
  6201.         AX = error code
  6202.         0002h name not found in ROM
  6203.         0003h name contains colon or backslash
  6204. Notes:    the '*' wildcard matches all remaining characters in a ROM program's
  6205.       name; any following characters in the search mask are ignored up to
  6206.       another asterisk, which must be matched by an asterisk in the
  6207.       found program's name.
  6208.     the search mask and program names may contain multiple periods
  6209. SeeAlso: AH=1Ah,AH=4Eh,AH=6Eh,AX=6F00h,AX=6F02h
  6210.  
  6211. Format of ROM search structure:
  6212. Offset    Size    Description    (Table 0851)
  6213.  00h 13 BYTEs    ASCIZ name of found ROM program
  6214.  0Dh    DWORD    address at which to resume search (do not modify)
  6215.  11h    var    ASCIZ search mask passed in (do not modify)
  6216. --------O-216D-------------------------------
  6217. INT 21 U - OS/2 v1.x FAPI - "DosMkDir2"
  6218.     AH = 6Dh
  6219.     ???
  6220. Return: ???
  6221. Note:    also supported by OS/2 v2.0+ Virtual DOS Machines
  6222. SeeAlso: AH=39h
  6223. --------O-216D-------------------------------
  6224. INT 21 U - Novell DOS 7 - NOP
  6225.     AH = 6Dh
  6226. Return: AX = 0000h
  6227. Note:    this function invokes the same code as other NOP functions such as
  6228.       AH=18h and AH=61h
  6229. --------D-216E-------------------------------
  6230. INT 21 U - DOS 5+ ROM - FIND NEXT ROM PROGRAM
  6231.     AH = 6Eh
  6232.     [DTA] = result of previous FindFirst ROM (see AH=6Dh)
  6233. Return: CF clear if found
  6234.         [DTA] = updated ROM search structure (see #0851)
  6235.     CF set if not found
  6236.         AX = 0012h (no more matches)
  6237. SeeAlso: AH=4Fh,AH=6Dh
  6238. --------O-216E-------------------------------
  6239. INT 21 U - OS/2 v1.x FAPI - "DosENumAttrib"
  6240.     AH = 6Eh
  6241.     ???
  6242. Return: ???
  6243. Note:    also supported by OS/2 v2.0+ Virtual DOS Machines
  6244. SeeAlso: AX=5703h,AH=6Fh"OS/2",INT 2F/AX=112Dh
  6245. --------O-216F-------------------------------
  6246. INT 21 U - OS/2 v1.x FAPI - "DosQMaxEASize" - GET MAXIMUM SIZE OF EXTENDED ATTR
  6247.     AH = 6Fh
  6248.     ???
  6249. Return: ???
  6250. Note:    also supported by OS/2 v2.0+ Virtual DOS Machines
  6251. SeeAlso: AX=5703h,AX=6C01h,AH=6Eh"OS/2"
  6252. --------D-216F00-----------------------------
  6253. INT 21 U - DOS 5+ ROM - GET ROM SCAN START ADDRESS
  6254.     AX = 6F00h
  6255. Return: CF clear
  6256.     AL = 00h
  6257.     BX = current ROM scan starting segment
  6258. SeeAlso: AH=6Dh,AX=6F01h,AX=6F02h
  6259. --------D-216F01-----------------------------
  6260. INT 21 U - DOS 5+ ROM - SET ROM SCAN START ADDRESS
  6261.     AX = 6F01h
  6262.     BX = new ROM scan starting address
  6263. Return: CF clear
  6264.     AL = 00h
  6265. SeeAlso: AX=6F00h,AX=6F03h
  6266. --------D-216F02-----------------------------
  6267. INT 21 U - DOS 5+ ROM - GET EXCLUSION REGION LIST
  6268.     AX = 6F02h
  6269.     ES:BX -> buffer for exclusion region list (see #0852)
  6270. Return: CF clear
  6271.     AL = 00h
  6272.     ES:BX = 0000h:0000h on error, unchanged if buffer filled
  6273. SeeAlso: AX=6F00h,AX=6F03h
  6274.  
  6275. Format of ROM exclusion region list:
  6276. Offset    Size    Description    (Table 0852)
  6277.  00h    WORD    number of entries
  6278.  02h 2N WORDs    start/end segments of N excluded regions
  6279. --------D-216F03-----------------------------
  6280. INT 21 U - DOS 5+ ROM - SET EXCLUSION REGION LIST
  6281.     AX = 6F03h
  6282.     DS:DX -> new exclusion region list (see #0852)
  6283. Return: CF clear
  6284.     AL = 00h
  6285. Notes:    DOS saves only the pointer and assumes that the contents of the list
  6286.       are never changed, and that regions do not overlap
  6287.     if AL > 03h on entry, DOS returns CF set/AL=01h
  6288. SeeAlso: AX=6F01h,AX=6F02h
  6289. ----------217070BX6060-----------------------
  6290. INT 21 - PCW Weather Card interface - GET DATA SEGMENT
  6291.     AX = 7070h
  6292.     BX = 6060h
  6293.     CX = 7070h
  6294.     DX = 7070h
  6295.     SI = 7070h
  6296.     DI = 7070h
  6297. Return: AX = segment of data structure (see #0853)
  6298. Notes:    the data structure is at offset 516 from this segment
  6299.     the update byte is at offset 514 from this segment.  Updates are
  6300.       once per second while this byte is nonzero and it is decremented
  6301.       once per second.  While this byte is 0 updates are once per minute.
  6302. SeeAlso: AX=7070h/BX=7070h
  6303.  
  6304. Format of PCW Weather Card data structure:
  6305. Offset    Type    Description    (Table 0853)
  6306.  00h    WORD    hour
  6307.  02h    WORD    minute
  6308.  04h    WORD    second
  6309.  06h    WORD    day
  6310.  08h    WORD    month
  6311.  0Ah    WORD    year
  6312.  0Ch    WORD    ???
  6313.  0Eh    WORD    relative barometric pressure (in 1/100 inches)
  6314.  10h    WORD    ???
  6315.  12h    WORD    ???
  6316.  14h    WORD    temperature 1 (in 1/10 degrees F)
  6317.  16h    WORD    temperature 1 lowest (in 1/10 degrees F)
  6318.  18h    WORD    temperature 1 highest (in 1/10 degrees F)
  6319.  1Ah    WORD    temperature 2 (in 1/10 degrees F)
  6320.  1Ch    WORD    temperature 2 lowest (in 1/10 degrees F)
  6321.  1Eh    WORD    temperature 2 highest (in 1/10 degrees F)
  6322.  20h    WORD    wind speed (in MPH)
  6323.  22h    WORD    average of 60 wind speed samples (in MPH)
  6324.  24h    WORD    highest wind speed (in MPH)
  6325.  26h    WORD    wind chill factor  (in 1/10 degrees F)
  6326.  28h    WORD    lowest wind chill factor (in 1/10 degrees F)
  6327.  2Ah    WORD    ???
  6328.  2Ch    WORD    wind direction (in degrees)
  6329.  2Eh    WORD    accumulated daily rainfall (in 1/10 inches)
  6330.  30h    WORD    accumulated annual rainfall (in 1/10 inches)
  6331. ----------217070BX7070-----------------------
  6332. INT 21 - PCW Weather Card interface - INSTALLATION CHECK
  6333.     AX = 7070h
  6334.     BX = 7070h
  6335.     CX = 7070h
  6336.     DX = 7070h
  6337.     SI = 7070h
  6338.     DI = 7070h
  6339. Return: AX = 0070h
  6340.     BX = 0070h
  6341.     CX = 0070h
  6342.     DX = 0070h
  6343.     SI = 0070h
  6344.     DI = 0070h
  6345. SeeAlso: AX=7070h/BX=6060h,AX=8080h
  6346. --------D-2171-------------------------------
  6347. INT 21 - DOS 7 (Chicago) - LONG FILENAME FUNCTIONS
  6348.     AH = 71h
  6349.     AL = function
  6350.         39h create directory
  6351.         3Ah remove directory
  6352.         3Bh set current directory
  6353.         41h delete file
  6354.         43h get file attributes (BL=00h), set file attributes (BL=01h)
  6355.         47h get current directory
  6356.         4Eh find first file
  6357.         4Fh find next file
  6358.         56h move (rename) file
  6359.         6Ch create/open file
  6360. Return: CF set on error
  6361.         AX = error code
  6362.         7100h if function not supported
  6363.     CF clear if successful
  6364.         other registers as for corresponding "old" DOS function
  6365. Notes:    if error 7100h is returned, the old-style function should be called
  6366.     AX=714Eh returns a "search handle" which must be passed to AX=714Fh;
  6367.       when the search is complete, AH=72h must be called to terminate
  6368.       the search
  6369. SeeAlso: AH=39h,AH=3Ah,AH=3Bh,AH=41h,AH=43h,AH=47h,AH=4Eh,AH=4Fh,AH=56h,AH=6Ch
  6370. SeeAlso: AH=72h
  6371. --------D-2172-------------------------------
  6372. INT 21 - DOS 7 (Chicago) - "FindClose" - TERMINATE DIRECTORY SEARCH
  6373.     AH = 72h
  6374.     details not yet available
  6375. Note:    this function must be called after starting a search with AX=714Eh,
  6376.       to indicate that the search handle returned by that function will
  6377.       no longer be used
  6378. SeeAlso: AH=4Eh,AH=71h
  6379. --------v-2176-------------------------------
  6380. INT 21 - VIRUS - "Klaeren"/"Hate" - INSTALLATION CHECK
  6381.     AH = 76h
  6382. Return: AL = 48h if resident
  6383. SeeAlso: AX=6969h,AX=7700h"VIRUS"
  6384. --------v-217700-----------------------------
  6385. INT 21 - VIRUS - "Growing Block" - INSTALLATION CHECK
  6386.     AX = 7700h
  6387. Return: AX = 0920h if resident
  6388. SeeAlso: AH=76h,AH=7Fh
  6389. --------V-217734-----------------------------
  6390. INT 21 U - SCROLLit v1.7 - INSTALLATION CHECK
  6391.     AX = 7734h
  6392. Return: DX = 3477h if installed
  6393.         AX = segment of resident code
  6394. Program: ScrollIt is a shareware backscroll utility by Bromfield Software
  6395.       Products
  6396. --------U-217761-----------------------------
  6397. INT 21 - WATCH.COM v3.2+ - INSTALLATION CHECK
  6398.     AX = 7761h ('wa')
  6399. Return: AX = 6177h
  6400. Note:    WATCH.COM is part of the "TSR" package by TurboPower Software
  6401. SeeAlso: INT 16/AX=7761h
  6402. --------v-217F-------------------------------
  6403. INT 21 - VIRUS - "Squeaker" - INSTALLATION CHECK
  6404.     AH = 7Fh
  6405. Return: AH = 80h if resident
  6406. SeeAlso: AX=7700h,AH=83h"VIRUS"
  6407. --------D-2180-------------------------------
  6408. INT 21 - European MS-DOS 4.0 - "AEXEC" - EXECUTE PROGRAM IN BACKGROUND
  6409.     AH = 80h
  6410.     CX = mode
  6411.         0000h place child in zombie mode on exit to preserve exit code
  6412.         0001h discard child process and exit code on termination
  6413.     DS:DX -> ASCIZ full program name
  6414.     ES:BX -> parameter block (as for AX=4B00h)
  6415. Return: CF clear if successful
  6416.         AX = Command Subgroup ID (CSID)
  6417.     CF set on error
  6418.         AX = error code (see #0770 at AH=59h)
  6419. Program: European MS-DOS 4.0 was written for Siemens in Germany and then used
  6420.       by several other European OEMs; its release falls between mainstream
  6421.       versions 3.2 and 3.3
  6422. Desc:    asynchronously execute a program, creating a new process for it
  6423. Notes:    this function is called by the DETACH command
  6424.     there is a system-wide limit of 32 processes
  6425.     the CSID is used to identify all processes that have been spawned by
  6426.       a given process, whether directly or indirectly
  6427.     programs to be run in the background must use the new executable format
  6428.       (see #0693 at AH=4Bh)
  6429.     background processes may only perform asynchronous (background) EXECs,
  6430.       either this function or AX=4B04h
  6431.     background processes may execute INT 11, INT 12, INT 21, INT 2A, and
  6432.       INT 2F at any time; they may execute INT 10 and INT 16 only while
  6433.       they have opened a popup screen via INT 2F/AX=1401h; no other
  6434.       interrupts may be executed from the background
  6435.     background processes may not use drive B: or overlay their code
  6436.       segments
  6437.     see AX=8700h for an installation check
  6438.     the "NE" new executable format made its first appearance in European
  6439.       MS-DOS 4.0
  6440. SeeAlso: AH=4Bh,AH=87h,INT 2F/AX=1400h"POPUP"
  6441. ----------218080-----------------------------
  6442. INT 21 - PCW Weather Card interface - UNINSTALL PCW.COM AND FREE MEMORY
  6443.     AX = 8080h
  6444. Return: ???
  6445. SeeAlso: AX=7070h/BX=7070h
  6446. --------D-2181-------------------------------
  6447. INT 21 - European MS-DOS 4.0 - "FREEZE" - STOP A PROCESS
  6448.     AH = 81h
  6449.     BX = flag (00h freeze command subtree, 01h only specified process)
  6450.     CX = Process ID of head of command subtree
  6451. Return: CF clear if successful
  6452.     CF set on error
  6453.         AX = error code (no such process)
  6454. Desc:    temporarily suspend a process or a process and all of its children
  6455. Note:    if BX=0001h, this call will not return until the process is actually
  6456.       frozen, which may not be until after it unblocks from an I/O
  6457.       operation
  6458. SeeAlso: AH=82h,AH=89h,AX=8E00h,INT 15/AX=101Dh
  6459. --------D-2182-------------------------------
  6460. INT 21 - European MS-DOS 4.0 - "RESUME" - RESTART A PROCESS
  6461.     AH = 82h
  6462.     BX = flag (00h resume command subtree, 01h only specified process)
  6463.     CX = Process ID of head of command subtree
  6464. Return: CF clear if successful
  6465.     CF set on error
  6466.         AX = error code (no such process)
  6467. Desc:    restart a previously-suspended process or a process and all of its
  6468.       children
  6469. SeeAlso: AH=81h,INT 15/AX=101Eh
  6470. --------D-2183-------------------------------
  6471. INT 21 - European MS-DOS 4.0 - "PARTITION" - GET/SET FOREGROUND PARTITION SIZE
  6472.     AH = 83h
  6473.     AL = function
  6474.         00h get size
  6475.         01h set new size
  6476.         BX = new size in paragraphs
  6477. Return: CF clear if successful
  6478.         BX = current size (function 00h) or old size (function 01h)
  6479.     CF set on error
  6480.         AX = error code (01h,07h,0Dh)(see #0770 at AH=59h)
  6481. Desc:    specify or determine how much memory may be allocated by the foreground
  6482.       process
  6483. Note:    if the partition size is set to 0000h, no partition management is done
  6484.       and all memory allocation is compatible with DOS 3.2.
  6485.     the partition size can be changed regardless of what use is being made
  6486.       of the changed memory; subsequent allocations will follow the
  6487.       partition rules (foreground processes may allocate only foreground
  6488.       memory; background processes allocate background memory first, then
  6489.       foreground memory)
  6490. SeeAlso: AH=48h,AH=4Ah
  6491. --------v-2183-------------------------------
  6492. INT 21 - VIRUS - "SVC" - INSTALLATION CHECK
  6493.     AH = 83h
  6494. Return: DX = 1990h if resident
  6495. SeeAlso: AH=76h,AH=84h"VIRUS"
  6496. --------v-2184-------------------------------
  6497. INT 21 - VIRUS - "SVC 5.0" or "SVC 6.0" - INSTALLATION CHECK
  6498.     AH = 84h
  6499. Return: DX = 1990h if resident
  6500.         BH = version number (major in high nybble, minor in low)
  6501. SeeAlso: AH=83h"VIRUS",AH=89h"VIRUS"
  6502. --------D-218400-----------------------------
  6503. INT 21 - European MS-DOS 4.0 - "CREATMEM" - CREATE A SHARED MEMORY AREA
  6504.     AX = 8400h
  6505.     BX = size in bytes (0000h = 65536)
  6506.     CX = flags
  6507.         bit 6: zero-initialize segment
  6508.     DS:DX -> ASCIZ name (must begin with "\SHAREMEM\")
  6509. Return: CF clear if successful
  6510.         AX = segment address of shared memory global object
  6511.     CF set on error
  6512.         AX = error code (06h,08h) (see #0770 at AH=59h)
  6513. Desc:    create an area of memory which may be accessed by multiple processes
  6514. Notes:    shared memory objects are created as special files (thus the
  6515.       restriction on the name)
  6516.     on successful creation, the reference count is set to 1
  6517. SeeAlso: AX=8401h,AX=8402h,INT 15/AX=DE19h
  6518. --------D-218401-----------------------------
  6519. INT 21 - European MS-DOS 4.0 - "GETMEM" - OBTAIN ACCESS TO SHARED MEMORY AREA
  6520.     AX = 8401h
  6521.     CX = flags
  6522.         bit 7: writable segment (ignored by MS-DOS 4.0)
  6523.     DS:DX -> ASCIZ name (must begin with "\SHAREMEM\")
  6524. Return: CF clear if successful
  6525.         AX = segment address of shared memory global object
  6526.         CX = size in bytes
  6527.     CF set on error
  6528.         AX = error code (invalid name)
  6529. Desc:    get address of a previously-created area of memory which may be
  6530.       accessed by multiple processes
  6531. Note:    this call increments the reference count for the shared memory area
  6532. SeeAlso: AX=8400h,AX=8402h
  6533. --------D-218402-----------------------------
  6534. INT 21 - European MS-DOS 4.0 - "RELEASEMEM" - FREE SHARED MEMORY AREA
  6535.     AX = 8402h
  6536.     BX = handle (segment address of shared memory object)
  6537. Return: CF clear if successful
  6538.     CF set on error
  6539.         AX = error code (no such name)
  6540. Desc:    indicate that the specified area of shared memory will no longer be
  6541.       used by the caller
  6542. Note:    the reference count is decremented and the shared memory area is
  6543.       deallocated if the new reference count is zero
  6544. SeeAlso: AX=8400h,AX=8401h,INT 15/AX=DE19h
  6545. --------D-2185-------------------------------
  6546. INT 21 U - European MS-DOS 4.0 - ???
  6547.     AH = 85h
  6548.     ???
  6549. Return: ???
  6550. --------D-2186-------------------------------
  6551. INT 21 - European MS-DOS 4.0 - "SETFILETABLE" - INSTALL NEW FILE HANDLE TABLE
  6552.     AH = 86h
  6553.     BX = total number of file handles in new table
  6554. Return: CF clear if successful
  6555.     CF set on error
  6556.         AX = error code (06h,08h) (see #0770 at AH=59h)
  6557. Desc:    adjust the size of the per-process open file table, thus raising or
  6558.       lowering the limit on the number of files the caller can open
  6559.       simultaneously
  6560. Notes:    any currently-open files are copied to the new table
  6561.     if the table is increased beyond the default 20 handles, only the
  6562.       first 20 will be inherited by child processes
  6563.     error 06h is returned if the requested number of handles exceeds
  6564.       system limits or would require closing currently-open files
  6565. SeeAlso: AH=26h,AH=67h
  6566. --------D-2187-------------------------------
  6567. INT 21 - European MS-DOS 4.0 - "GETPID" - GET PROCESS IDENTIFIER
  6568.     AH = 87h
  6569. Return: AX = PID
  6570.     BX = parent process's PID
  6571.     CX = Command Subgroup ID (CSID)
  6572. Program: European MS-DOS 4.0 was written for Siemens in Germany and then used
  6573.       by several other European OEMs; its release falls between mainstream
  6574.       versions 3.2 and 3.3
  6575. Desc:    determine an identifier by which to access the calling process
  6576. Notes:    called by MS C v5.1 getpid() function
  6577.     this function apparently must return AX=0001h for INT 21/AH=80h to
  6578.       succeed
  6579.     one possible check for European MS-DOS 4.0 is to issue this call with
  6580.       AL=00h and check whether AL is nonzero on return
  6581. SeeAlso: AH=30h,AH=62h,AH=80h
  6582. Index:    installation check;European MS-DOS 4.0
  6583. --------D-2188-------------------------------
  6584. INT 21 U - European MS-DOS 4.0 - ???
  6585.     AH = 88h
  6586.     ???
  6587. Return: ???
  6588. SeeAlso: AH=87h
  6589. --------D-2189-------------------------------
  6590. INT 21 - European MS-DOS 4.0 - SLEEP
  6591.     AH = 89h
  6592.     CX = time in milliseconds or 0000h to give up time slice
  6593. Return: CF clear if successful
  6594.         CX = 0000h
  6595.     CF set on error
  6596.         AX = error code (interrupted system call)
  6597.         CX = sleep time remaining
  6598. Desc:    suspend the calling process for the specified duration
  6599. Notes:    the sleep interval is rounded up to the next higher increment of the
  6600.       scheduler clock, and may be extended further if other processes are
  6601.       running
  6602.     this call may be interrupted by signals (see AH=8Dh)
  6603.     reportedly called by Microsoft C 4.0 startup code
  6604.     background processes have higher priority than the foreground process,
  6605.       and should thus periodically yield the CPU
  6606. SeeAlso: AH=81h,INT 15/AX=1000h,INT 2F/AX=1680h,INT 7A/BX=000Ah
  6607. --------v-2189-------------------------------
  6608. INT 21 - VIRUS - "Vriest" - INSTALLATION CHECK
  6609.     AH = 89h
  6610. Return: AX = 0123h if resident
  6611. SeeAlso: AH=84h"VIRUS",AH=90h"VIRUS"
  6612. --------D-218A-------------------------------
  6613. INT 21 - European MS-DOS 4.0 - "CWAIT" - WAIT FOR CHILD TO TERMINATE
  6614.     AH = 8Ah
  6615.     BL = range (00h command subtree, 01h any child)
  6616.     BH = suspend flag
  6617.         00h suspend if children exist but none are dead
  6618.         01h return if no dead children
  6619.     CX = Process ID of head of command subtree
  6620. Return: CF clear if successful
  6621.         AH = termination type (see #0854)
  6622.         AL = return code from child or aborting signal
  6623.         BX = PID of child (0000h if no dead children)
  6624.     CF set on error
  6625.         AX = error code (no child,interrupted system call)
  6626. Desc:    get return code from an asynchronously-executed child program,
  6627.       optionally waiting if no return code is available
  6628. SeeAlso: AH=4Bh,AH=4Dh,AH=80h,AH=8Dh
  6629.  
  6630. (Table 0854)
  6631. Values for termination type:
  6632.  00h    normal termination
  6633.  01h    aborted by Control-C
  6634.  02h    aborted by I/O error
  6635.  03h    terminate and stay resident
  6636.  04h    aborted by signal
  6637.  05h    aborted by program error
  6638. --------D-218B-------------------------------
  6639. INT 21 U - European MS-DOS 4.0 - ???
  6640.     AH = 8Bh
  6641.     ???
  6642. Return: ???
  6643. SeeAlso: AH=87h
  6644. --------D-218C-------------------------------
  6645. INT 21 - European MS-DOS 4.0 - SET SIGNAL HANDLER
  6646.     AH = 8Ch
  6647.     AL = signal number (see #0855)
  6648.     BL = action (see #0856)
  6649.     DS:DX -> signal handler (see #0857)
  6650. Return: CF clear if successful
  6651.         AL = previous action
  6652.         ES:BX -> previous signal handler
  6653.     CF set on error
  6654.         AX = error code (01h,invalid SigNumber or Action)
  6655.           (see #0770 at AH=59h)
  6656. Desc:    set the routine which will be invoked on a number of exceptional
  6657.       conditions
  6658. Note:    all signals will be sent to the most recently installed handler
  6659. SeeAlso: AH=8Dh
  6660.  
  6661. (Table 0855)
  6662. Values for European MS-DOS 4.0 signal number:
  6663.  01h    SIGINTR        Control-C or user defined interrupt key
  6664.  08h    SIGTERM        program termination
  6665.  09h    SIGPIPE        broken pipe
  6666.  0Dh    SIGUSER1    reserved for user definition
  6667.  0Eh    SIGUSER2    reserved for user definition
  6668.  
  6669. (Table 0856)
  6670. Values for signal action:
  6671.  00h    SIG_DFL        terminate process on receipt
  6672.  01h    SIG_IGN        ignore signal
  6673.  02h    SIG_GET        signal is accepted
  6674.  03h    SIG_ERR        sender gets error
  6675.  04h    SIG_ACK        acknowledge received signal and clear it, but don't
  6676.               change current setting
  6677.  
  6678. (Table 0857)
  6679. Values signal handler is called with:
  6680.     AL = signal number (see #0855)
  6681.     AH = signal argument
  6682. Return: RETF, CF set: terminate process
  6683.     RETF, CF clear, ZF set: abort any interrupted system call with an error
  6684.     RETF, CF clear, ZF clear: restart any interrupted system call
  6685.     IRET: restart any interrupted system call
  6686. Note:    the signal handler may also perform a nonlocal GOTO by resetting the
  6687.       stack pointer and jumping; before doing so, it should dismiss the
  6688.       signal by calling this function with BL=04h
  6689. --------D-218D-------------------------------
  6690. INT 21 - European MS-DOS 4.0 - SEND SIGNAL
  6691.     AH = 8Dh
  6692.     AL = signal number (see #0855)
  6693.     BH = signal argument
  6694.     BL = action
  6695.         00h send to entire command subtree
  6696.         01h send only to specified process
  6697.     DX = Process ID
  6698. Return: CF clear if successful
  6699.     CF set on error
  6700.         AX = error code (01h,06h)(see #0770 at AH=59h)
  6701. Desc:    invoke the exceptional-condition handler for the specified process
  6702. Note:    error 06h may be returned if one or more of the affected processes
  6703.       have an error handler for the signal
  6704. SeeAlso: AH=8Ch
  6705. --------D-218E00BH00-------------------------
  6706. INT 21 - European MS-DOS 4.0 - "SETPRI" - GET/SET PROCESS PRIORITY
  6707.     AX = 8E00h
  6708.     BH = 00h
  6709.     BL = action
  6710.         00h set priority for command subtree
  6711.         01h set priority for specified process only
  6712.     CX = Process ID
  6713.     DH = 00h
  6714.     DL = change in priority (00h to get priority)
  6715. Return: CF clear if successful
  6716.         DL = process priority
  6717.         DH destroyed
  6718.     CF set on error
  6719.         AX = error code (01h,no such process)(see #0770 at AH=59h)
  6720. Desc:    specify or determine the execution priority of the specified process
  6721.       or the process and all of its children
  6722. SeeAlso: AH=81h
  6723. --------D-218F-------------------------------
  6724. INT 21 U - European MS-DOS 4.0 - ???
  6725.     AH = 8Fh
  6726.     ???
  6727. Return: ???
  6728. SeeAlso: AH=87h
  6729. --------D-2190-------------------------------
  6730. INT 21 U - European MS-DOS 4.0 - ???
  6731.     AH = 90h
  6732.     ???
  6733. Return: ???
  6734. SeeAlso: AH=87h
  6735. --------v-2190-------------------------------
  6736. INT 21 - VIRUS - "Carioca" - INSTALLATION CHECK
  6737.     AH = 90h
  6738. Return: AH = 01h if resident
  6739. SeeAlso: AH=89h"VIRUS",AX=9753h"VIRUS"
  6740. --------D-2191-------------------------------
  6741. INT 21 U - European MS-DOS 4.0 - ???
  6742.     AH = 91h
  6743.     ???
  6744. Return: ???
  6745. SeeAlso: AH=87h
  6746. --------D-2192-------------------------------
  6747. INT 21 U - European MS-DOS 4.0 - ???
  6748.     AH = 92h
  6749.     ???
  6750. Return: ???
  6751. SeeAlso: AH=87h
  6752. --------D-2193-------------------------------
  6753. INT 21 - European MS-DOS 4.0 - "PIPE" - CREATE A NEW PIPE
  6754.     AH = 93h
  6755.     CX = size in bytes
  6756. Return: CF clear if successful
  6757.         AX = read handle
  6758.         BX = write handle
  6759.     CF set on error
  6760.         AX = error code (08h) (see #0770 at AH=59h)
  6761. Desc:    create a communications channel which may be used for interprocess
  6762.       data and command exchanges
  6763. SeeAlso: AH=3Ch,AH=3Fh,AH=40h,AH=84h
  6764. --------D-2194-------------------------------
  6765. INT 21 U - European MS-DOS 4.0 - ???
  6766.     AH = 94h
  6767.     ???
  6768. Return: ???
  6769. SeeAlso: AH=87h
  6770. --------D-2195-------------------------------
  6771. INT 21 - European MS-DOS 4.0 - HARD ERROR PROCESSING
  6772.     AH = 95h
  6773.     AL = new state
  6774.        00h enabled
  6775.        01h disabled, automatically fail hard errors
  6776. Return: AX = previous setting
  6777. Desc:    specify whether hard (critical) errors should automatically fail the
  6778.       system call or invoke an INT 24
  6779. SeeAlso: INT 24
  6780. --------D-2196-------------------------------
  6781. INT 21 U - European MS-DOS 4.0 - ???
  6782.     AH = 96h
  6783.     ???
  6784. Return: ???
  6785. --------D-2197-------------------------------
  6786. INT 21 U - European MS-DOS 4.0 - ???
  6787.     AH = 97h
  6788.     ???
  6789. Return: ???
  6790. --------v-219753-----------------------------
  6791. INT 21 - VIRUS - "Nina" - INSTALLATION CHECK
  6792.     AX = 9753h
  6793. Return: never (executes original program) if virus resident
  6794. SeeAlso: AH=90h"VIRUS",AX=A1D5h"VIRUS"
  6795. --------D-2198-------------------------------
  6796. INT 21 U - European MS-DOS 4.0 - ???
  6797.     AH = 98h
  6798.     ???
  6799. Return: ???
  6800. --------D-2199-------------------------------
  6801. INT 21 u - European MS-DOS 4.0 - "PBLOCK" - BLOCK A PROCESS
  6802.     AH = 99h
  6803.     DS:BX -> memory location to block on
  6804.     CX = timeout in milliseconds
  6805.     DH = nonzero if interruptable
  6806. Return: CF clear if awakened by event
  6807.         AX = 0000h
  6808.     CF set if unusual wakeup
  6809.         ZF set if timeout, clear if interrupted by signal
  6810.         AX = nonzero
  6811. Desc:    suspend calling process until another process sends a "restart" signal
  6812.       or a timeout occurs
  6813. SeeAlso: AH=9Ah,INT 2F/AX=0802h
  6814. --------D-219A-------------------------------
  6815. INT 21 u - European MS-DOS 4.0 - "PRUN" - UNBLOCK A PROCESS
  6816.     AH = 9Ah
  6817.     DS:BX -> memory location processes may have blocked on
  6818. Return: AX = number of processes awakened
  6819.     ZF set if no processes awakened
  6820. Program: European MS-DOS 4.0 was written for Siemens in Germany and then used
  6821.       by several other European OEMs; its release falls between mainstream
  6822.       versions 3.2 and 3.3
  6823. Desc:    restart all processes waiting for the specified "restart" signal
  6824. SeeAlso: AH=99h,INT 2F/AX=0802h
  6825. --------I-21A0-------------------------------
  6826. INT 21 - Attachmate Extra! - GET 3270 DISPLAY STATE
  6827.     AH = A0h
  6828. Return: AL = display status (see #0858)
  6829.     BX = host window status (see #0859)
  6830. Program: Attachmate Extra! is a 3270 emulator by Attachmate Corporation
  6831. SeeAlso: AH=A1h
  6832.  
  6833. Bitfields for Attachmate Extra! display status:
  6834. Bit(s)    Description    (Table 0858)
  6835.  7    0=windowed, 1=enlarged
  6836.  6-3    current screen profile number 0-9
  6837.  2-0    active window number (0=PC, 1-4=host B-E, 5-6=notepad F-G)
  6838.  
  6839. Bitfields for host window status:
  6840. Bit(s)    Description    (Table 0859)
  6841.  15    reserved
  6842.  14    0=host E window installed, 1=not
  6843.  13    0=host E terminal on, 1=off
  6844.  12    0=host E window displayed, 1=not
  6845.  11    reserved
  6846.  10    0=host D window installed, 1=not
  6847.  9    0=host D terminal on, 1=off
  6848.  8    0=host D window displayed, 1=not
  6849.  7    reserved
  6850.  6    0=host C window installed, 1=not
  6851.  5    0=host C terminal on, 1=off
  6852.  4    0=host C window displayed, 1=not
  6853.  3    reserved
  6854.  2    0=host B window installed, 1=not
  6855.  1    0=host B terminal on, 1=off
  6856.  0    0=host B window displayed, 1=not
  6857. --------I-21A1-------------------------------
  6858. INT 21 - Attachmate Extra! - SET 3270 DISPLAY STATE
  6859.     AH = A1h
  6860.     AL = new display status byte (see #0858)
  6861. SeeAlso: AH=A0h,AH=A2h
  6862. --------v-21A1D5-----------------------------
  6863. INT 21 - VIRUS - "789"/"Filehider" - INSTALLATION CHECK
  6864.     AX = A1D5h
  6865. Return: AX = 900Dh if resident
  6866. SeeAlso: AX=9753h,AX=A55Ah
  6867. --------I-21A2-------------------------------
  6868. INT 21 - Attachmate Extra! - SET HOST WINDOW STATE
  6869.     AH = A2h
  6870.     AL = new host window status byte (see #0860)
  6871. SeeAlso: AH=A1h
  6872.  
  6873. Bitfields for Attachmate Extra! host window status:
  6874. Bit(s)    Description    (Table 0860)
  6875.  7    0=power off, 1=power on
  6876.  6    0=not installed, 1=installed
  6877.  5-3    reserved
  6878.  2-0    window number 1-4=host B-E
  6879. --------I-21A3-------------------------------
  6880. INT 21 - Attachmate Extra! - SEND KEYSTROKES TO HOST WINDOW
  6881.     AH = A3h
  6882.     AL = window number (1-4=host B-E)
  6883.     CX = 0001h
  6884.     DS:BX -> keystroke buffer
  6885.     DL = zero if keystroke buffer contains host function code (see #0861),
  6886.           non-zero if keystroke buffer contains ASCII character
  6887. Return: CX = zero if character sent, non-zero if not
  6888.     BX incremented if CX=0
  6889.  
  6890. (Table 0861)
  6891. Values for Attachmate Extra! host function code:
  6892.  00h=reserved    10h=PF16    20h=Clear    30h=SysReq
  6893.  01h=PF1    11h=PF17    21h=Print    31h=ErInp
  6894.  02h=PF2    12h=PF18    22h=Left    32h=ErEof
  6895.  03h=PF3    13h=PF19    23h=Right    33h=Ident
  6896.  04h=PF4    14h=PF20    24h=Up        34h=Test
  6897.  05h=PF5    15h=PF21    25h=Down    35h=Reset
  6898.  06h=PF6    16h=PF22    26h=Home    36h=DevCncl
  6899.  07h=PF7    17h=PF23    27h=Fast Left    37h=Dup
  6900.  08h=PF8    18h=PF24    28h=Fast Right    38h=FldMark
  6901.  09h=PF9    19h=Alt on    29h=Bksp    39h=Enter
  6902.  0Ah=PF10    1Ah=Alt off    2Ah=Insert    3Ah=CrSel
  6903.  0Bh=PF11    1Bh=Shift on    2Bh=Delete
  6904.  0Ch=PF12    1Ch=Shift off    2Ch=Backtab
  6905.  0Dh=PF13    1Dh=PA1        2Dh=Tab
  6906.  0Eh=PF14    1Eh=PA2        2Eh=Newline
  6907.  0Fh=PF15    1Fh=PA3        2Fh=Attn
  6908. --------I-21A4-------------------------------
  6909. INT 21 - Attachmate Extra! - GET HOST WINDOW BUFFER ADDRESS
  6910.     AH = A4h
  6911.     AL = window number (1-4=host B-E)
  6912. Return: DS:BX -> 3270 display buffer
  6913. SeeAlso: AH=A5h,AH=B8h
  6914. --------I-21A5-------------------------------
  6915. INT 21 - Attachmate Extra! - GET HOST WINDOW CURSOR POSITION
  6916.     AH = A5h
  6917.     AL = window number (1-4=host B-E)
  6918. Return: BX = cursor position (80 * row + column, where 0:0 is upper left)
  6919. Note:    if the host window is configured with the Extended Attribute (EAB)
  6920.       feature, multiply the cursor position by 2 to obtain the byte offset
  6921.       into the display buffer
  6922. SeeAlso: AH=A4h
  6923. --------v-21A55A-----------------------------
  6924. INT 21 - VIRUS - "Eddie-2" - INSTALLATION CHECK
  6925.     AX = A55Ah
  6926. Return: AX = 5AA5h if resident
  6927. SeeAlso: AX=A1D5h,AX=AA00h
  6928. --------v-21AA00-----------------------------
  6929. INT 21 - VIRUS - "Blinker" - INSTALLATION CHECK
  6930.     AX = AA00h
  6931. Return: AX = 00AAh if resident
  6932. SeeAlso: AX=A55Ah,AX=AA03h
  6933. --------v-21AA03-----------------------------
  6934. INT 21 - VIRUS - "Backtime" - INSTALLATION CHECK
  6935.     AX = AA03h
  6936. Return: AX = 03AAh if resident
  6937. SeeAlso: AX=AA00h,AH=ABh
  6938. --------v-21AB-------------------------------
  6939. INT 21 - VIRUS - "600" or "Voronezh"-family - INSTALLATION CHECK
  6940.     AH = ABh
  6941. Return: AX = 5555h if resident
  6942. SeeAlso: AX=AA03h,AX=BBBBh"VIRUS"
  6943. --------I-21AF-------------------------------
  6944. INT 21 - Attachmate Extra! - GET TRANSLATE TABLE ADDRESS
  6945.     AH = AFh
  6946. Return: DS:BX -> translate tables (see #0862)
  6947.  
  6948. Format of Attachmate Extra! translate tables:
  6949. Offset    Size    Description    (Table 0862)
  6950.  00h 256 BYTEs    ASCII to 3270 buffer code translate table
  6951. 100h 256 BYTEs    3270 buffer code to ASCII translate table
  6952. 200h 256 BYTEs    3270 buffer code to EBCDIC translate table
  6953. 300h 256 BYTEs    EBCDIC to 3270 buffer code translate table
  6954. --------N-21B300-----------------------------
  6955. INT 21 U - Novell NetWare - CHECK LIP/PACKET SIGNING/IPX CHECKSUM SUPPORT???
  6956.     AX = B300h
  6957. Return: AX = 0000h if supported???
  6958. Note:    this function appeared with the packet signing/Large Internet Packets/
  6959.       IPX Checksum-aware NetWare shells
  6960. SeeAlso: AX=B301h,AX=B302h
  6961. --------N-21B301-----------------------------
  6962. INT 21 U - Novell NetWare - CHECK SIGNATURE LEVEL???
  6963.     AX = B301h
  6964. Return: AX = 0000h if supported???
  6965.         BX:CX indicate signature level
  6966.         0000h:0000h = signature level 0
  6967.         0002h:0000h = signature level 1
  6968.         0202h:0000h = signature level 2
  6969.         0202h:0202h = signature level 3
  6970. Note:    this function appeared with the packet signing/Large Internet Packets/
  6971.       IPX Checksum-aware NetWare shells
  6972. SeeAlso: AX=B300h,AX=B304h
  6973. --------N-21B302-----------------------------
  6974. INT 21 U - Novell NetWare - START PACKET SIGNING
  6975.     AX = B302h
  6976.     CX = server connection (1-8)
  6977.     DS:SI -> 24-byte buffer containing ???
  6978. Return: ???
  6979. Notes:    this function appeared with the packet signing/Large Internet Packets/
  6980.       IPX Checksum-aware NetWare shells
  6981.     if packet signing is active, this call is required if and only if the
  6982.       last call successfully authenticated the workstation to the server
  6983. --------N-21B304-----------------------------
  6984. INT 21 U - Novell NetWare - SET SIGNATURE LEVEL
  6985.     AX = B304h
  6986.     BX:CX = new signature level (see AX=B301h)
  6987. Return: ???
  6988. Note:    this function appeared with the packet signing/Large Internet Packets/
  6989.       IPX Checksum-aware NetWare shells
  6990. SeeAlso: AX=B300h,AX=B301h
  6991. --------N-21B4-------------------------------
  6992. INT 21 U - Novell NetWare - "AttachHandle"
  6993.     AH = B4h
  6994.     DS:SI -> input buffer (see #0863)
  6995. Return: AX = DOS file handle or return code
  6996. Note:    this is an interface provided by NetWare to give DOS file access to
  6997.       NetWare files on non-DOS systems such as Macintosh, OS/2, and Unix
  6998. SeeAlso: AX=E909h
  6999.  
  7000. Format of Novell NetWare input buffer:
  7001. Offset    Size    Description    (Table 0863)
  7002.  00h    BYTE    "WorkFileServer"
  7003.  01h    BYTE    access code
  7004.  02h    DWORD    "OpenHandle"
  7005.  06h    WORD    "OpenHandleCount"
  7006.  08h    DWORD    "OpenFileSize"
  7007. Note:    the six bytes at 02h-07h appear to be the six-byte NetWare handle
  7008.       returned by AX=E909h
  7009. --------N-21B500-----------------------------
  7010. INT 21 U - Novell NetWare - VNETWARE.386 API - GET INSTANCE DATA
  7011.     AX = B500h
  7012. Return: ES:BX -> data
  7013.     CX = length
  7014. SeeAlso: AX=B501h,AX=B502h
  7015. --------N-21B501-----------------------------
  7016. INT 21 U - Novell NetWare - VNETWARE.386 API - END VIRTUAL MACHINE
  7017.     AX = B501h
  7018. SeeAlso: AX=B500h,AX=B502h
  7019. --------N-21B502-----------------------------
  7020. INT 21 U - Novell NetWare - VNETWARE.386 API - START VIRTUAL MACHINE
  7021.     AX = B502h
  7022. SeeAlso: AX=B500h,AX=B501h
  7023. --------N-21B5-------------------------------
  7024. INT 21 - Novell NetWare shell 3.01 - TASK MODE CONTROL
  7025.     AH = B5h
  7026.     AL = subfunction
  7027.         03h get task mode
  7028.         Return: AH = 00h
  7029.             AL = current task mode byte (see #0864)
  7030.         04h get task mode pointer
  7031.         Return: ES:BX -> task mode byte
  7032. Notes:    the task mode byte specifies how task cleanup should be performed, but
  7033.       is declared to be version-dependent
  7034.     allows a program to disable the automatic cleanup for programs managing
  7035.       task swapping, etc.
  7036.  
  7037. (Table 0864)
  7038. Values for NetWare task mode byte in version 3.01:
  7039.  00h-03h reserved
  7040.  04h     no task cleanup
  7041. --------N-21B505-----------------------------
  7042. INT 21 U - Novell NetWare - VNETWARE.386 API - SET VIRTUAL MACHINE ID
  7043.     AX = B505h
  7044.     ???
  7045. Return: ???
  7046. SeeAlso: AX=B502h,AX=B506h
  7047. --------N-21B506-----------------------------
  7048. INT 21 U - Novell NetWare - VNETWARE.386 API - GET VIRTUAL MACH SUPPORT LEVEL
  7049.     AX = B506h
  7050. Return: AX = ??? (0002h)
  7051. SeeAlso: AX=B505h
  7052. --------N-21B507-----------------------------
  7053. INT 21 - Novell NetWare - NetWare Shell - GET NUMBER OF PACKET BURST BUFFERS
  7054.     AX = B507h
  7055. Return: AL = number of packet burst buffers (configured at shell load time)
  7056. --------N-21B6-------------------------------
  7057. INT 21 - Novell NetWare - FILE SERVICES - EXTENDED FILE ATTRIBUTES
  7058.     AH = B6h
  7059.     AL = subfunction
  7060.         00h get extended file attributes
  7061.         01h set extended file attributes
  7062.         CL = extended file attributes (see #0865)
  7063.     DS:DX -> ASCIZ pathname (max 255 bytes)
  7064. Return: CF set on error
  7065.         AL = error code
  7066.         8Ch caller lacks privileges
  7067.         FEh not permitted to search directory
  7068.         FFh file not found
  7069.     CF clear if successful
  7070.         AL = 00h (success)
  7071.         CL = current extended file attributes (see #0865)
  7072. Note:    this function is supported by Advanced NetWare 2.1+
  7073. SeeAlso: AX=4300h,AH=E3h/SF=0Fh
  7074.  
  7075. Bitfields for NetWare extended file attributes:
  7076. Bit(s)    Description    (Table 0865)
  7077.  2-0    search mode (executables only)
  7078.     000 none (use shell's default search)
  7079.     001 search on all opens without path
  7080.     010 do not search
  7081.     011 search on read-only opens without path
  7082.     100 reserved
  7083.     101 search on all opens
  7084.     110 reserved
  7085.     111 search on all read-only opens
  7086.  3    reserved
  7087.  4    transactions on file tracked
  7088.  5    file's FAT indexed
  7089.  6    read audit (to be implemented)
  7090.  7    write audit (to be implemented)
  7091. --------N-21B7-------------------------------
  7092. INT 21 U - Novell NetWare - "HoldFileModeSet" (obsolete)
  7093.     AH = B7h
  7094.     AL = new value for HoldFileFlag
  7095. Return: AL = previous value of HoldFileFlag
  7096. Note:    this function provided backward compatibility with a bug in early
  7097.       DOS versions and CP/M, but is no longer used or supported
  7098. --------I-21B8-------------------------------
  7099. INT 21 - Attachmate Extra! - DISABLE HOST BUFFER UPDATES
  7100.     AH = B8h
  7101.     AL = window number (1-4=host B-E)
  7102.     DL = 01h
  7103. Notes:    only valid in CUT mode
  7104.     next AID keystroke (eg Enter) enables host buffer updates
  7105. SeeAlso: AH=A4h
  7106. --------N-21B800-----------------------------
  7107. INT 21 - Novell NetWare - PRINT SERVICES - GET DEFAULT CAPTURE FLAGS
  7108.     AX = B800h
  7109.     CX = size of reply buffer (01h-3Fh)
  7110.     ES:BX -> reply buffer for capture flags table (see #0866)
  7111. Return: AL = status
  7112.         00h successful
  7113. Note:    this function is supported by Advanced NetWare 2.0+
  7114. SeeAlso: AX=B801h,AX=B802h,AH=DFh/DL=00h,AH=DFh/DL=04h
  7115.  
  7116. Format of NetWare capture flags table:
  7117. Offset    Size    Description    (Table 0866)
  7118.  00h    BYTE    status (used internally, should be set to 00h)
  7119.  01h    BYTE    print flags (see #0867)
  7120.  02h    BYTE    tab size (01h-12h, default 08h)
  7121.  03h    BYTE    printer number on server (00h-04h, default 00h)
  7122.  04h    BYTE    number of copies to print (00h-FFh, default 01h)
  7123.  05h    BYTE    form type required in printer (default 00h)
  7124.  06h    BYTE    reserved
  7125.  07h 13 BYTEs    text to be placed on banner page
  7126.  14h    BYTE    reserved
  7127.  15h    BYTE    default local printer (00h = LPT1)
  7128.  16h    WORD    (big-endian) timeout in clock ticks for flushing capture file
  7129.           on inactivity, or 0000h to disable timeout
  7130.  18h    BYTE    flush capture file on LPT close if nonzero
  7131.  19h    WORD    (big-endian) maximum lines per page
  7132.  1Bh    WORD    (big-endian) maximum characters per line
  7133.  1Dh 13 BYTEs    name of form required in printer
  7134.  2Ah    BYTE    LPT capture flag
  7135.         00h inactive, FFh LPT device is being captured
  7136.  2Bh    BYTE    file capture flag
  7137.         00h if no file specified, FFh if capturing to file
  7138.  2Ch    BYTE    timing out (00h if no timeout in effect, FFh if timeout counter
  7139.           running)
  7140.  2Dh    DWORD    (big-endian) address of printer setup string
  7141.  31h    DWORD    (big-endian) address of printer reset string
  7142.  35h    BYTE    target connection ID
  7143.  36h    BYTE    capture in progress if FFh
  7144.  37h    BYTE    job queued for printing if FFh
  7145.  38h    BYTE    print job valid if FFh
  7146.  39h    DWORD    bindery object ID of print queue if previous byte FFh
  7147.  3Dh    WORD    (big-endian) print job number (1-999)
  7148.  
  7149. Bitfields for NetWare print flags:
  7150. Bit(s)    Description    (Table 0867)
  7151.  2    print capture file if interrupted by loss of connection
  7152.  3    no automatic form feed after print job
  7153.  6    printing control sequences interpreted by print service
  7154.  7    print banner page before capture file
  7155. --------N-21B801-----------------------------
  7156. INT 21 - Novell NetWare - PRINT SERVICES - SET DEFAULT CAPTURE FLAGS
  7157.     AX = B801h
  7158.     CX = size of buffer (01h-3Fh)
  7159.     ES:BX -> buffer containing capture flags table (see #0866)
  7160. Return: AL = status
  7161.         00h successful
  7162. Note:    this function is supported by Advanced NetWare 2.0+
  7163. SeeAlso: AX=B800h,AX=B803h,AH=DFh/DL=00h,AH=DFh/DL=04h
  7164. --------N-21B802-----------------------------
  7165. INT 21 - Novell NetWare - PRINT SERVICES - GET SPECIFIC CAPTURE FLAGS
  7166.     AX = B802h
  7167.     CX = size of reply buffer (01h-3Fh)
  7168.     DH = LPT port (00h-02h)
  7169.     ES:BX -> reply buffer for capture flags table (see #0866)
  7170. Return: AL = status
  7171.         00h successful
  7172. Note:    this function is supported by Advanced NetWare 2.1+
  7173. SeeAlso: AX=B800h,AX=B803h,AH=DFh/DL=00h,AH=DFh/DL=04h
  7174. --------N-21B803-----------------------------
  7175. INT 21 - Novell NetWare - PRINT SERVICES - SET SPECIFIC CAPTURE FLAGS
  7176.     AX = B803h
  7177.     CX = size of buffer (01h-3Fh)
  7178.     DH = LPT port (00h-02h)
  7179.     ES:BX -> buffer containing capture flags table (see #0866)
  7180. Return: AL = status
  7181.         00h successful
  7182. Note:    this function is supported by Advanced NetWare 2.1+
  7183. SeeAlso: AX=B800h,AX=B803h,AH=DFh/DL=00h,AH=DFh/DL=04h
  7184. --------N-21B804-----------------------------
  7185. INT 21 - Novell NetWare - PRINT SERVICES - GET DEFAULT LOCAL PRINTER
  7186.     AX = B804h
  7187. Return: DH = default LPT port (00h-02h)
  7188. Note:    this function is supported by Advanced NetWare 2.1+
  7189. SeeAlso: AX=B800h,AX=B805h,AH=DFh/DL=00h
  7190. --------N-21B805-----------------------------
  7191. INT 21 - Novell NetWare - PRINT SERVICES - SET DEFAULT LOCAL PRINTER
  7192.     AX = B805h
  7193.     DH = new default LPT port (00h-02h)
  7194. Return: AL = status
  7195.         00h successful
  7196. Note:    this function is supported by Advanced NetWare 2.1+
  7197. SeeAlso: AX=B800h,AX=B804h,AH=DFh/DL=00h
  7198. --------N-21B806-----------------------------
  7199. INT 21 - Novell NetWare - PRINT SERVICES - SET CAPTURE PRINT QUEUE
  7200.     AX = B806h
  7201.     DH = LPT port (00h-02h)
  7202.     BX:CX = print queue's object ID
  7203. Return: AL = status
  7204.         00h successful
  7205.         FFh job already set
  7206. Desc:    specify the print queue on which a print job is to be placed the next
  7207.       time a capture is started on the given printer port
  7208. Note:    this function is supported by Advanced NetWare 2.1+
  7209. SeeAlso: AX=B801h,AX=B807h,AX=E009h
  7210. --------N-21B807-----------------------------
  7211. INT 21 - Novell NetWare - PRINT SERVICES - SET CAPTURE PRINT JOB
  7212.     AX = B807h
  7213.     DH = LPT port (00h-02h)
  7214.     BX = job number (see AH=E3h/SF=68h)
  7215.     SI:DI:CX = NetWare file handle (see AH=E3h/SF=68h)
  7216. Return: AL = status
  7217.         00h successful
  7218.         FFh job already queued
  7219. Desc:    specify the capture file and print job to be used for subsequent
  7220.       output to the given printer port
  7221. Note:    this function is supported by Advanced NetWare 2.1+
  7222. SeeAlso: AX=B801h,AX=B806h,AX=E009h,AH=E3h/SF=68h
  7223. --------N-21B808-----------------------------
  7224. INT 21 - Novell NetWare - PRINT SERVICES - GET BANNER USER NAME
  7225.     AX = B808h
  7226.     ES:BX -> 12-byte buffer for user name
  7227. Return: AL = status
  7228.         00h successful
  7229. Desc:    get the user name which is printed on the banner page
  7230. Notes:    this function is supported by Advanced NetWare 2.1+
  7231.     the default name is the login name of the user
  7232. SeeAlso: AX=B809h
  7233. --------N-21B809-----------------------------
  7234. INT 21 - Novell NetWare - PRINT SERVICES - SET BANNER USER NAME
  7235.     AX = B809h
  7236.     ES:BX -> 12-byte buffer containing user name
  7237. Return: AL = status
  7238.         00h successful
  7239. Desc:    specify the user name which is printed on the banner page
  7240. Notes:    this function is supported by Advanced NetWare 2.1+
  7241.     the default name is the login name of the user
  7242. SeeAlso: AX=B808h
  7243. --------N-21B9-------------------------------
  7244. INT 21 U - Novell NetWare - "SpecialAttachableFunction"
  7245.     AH = B9h
  7246.     AL = FFh to hook this function
  7247.         ES:BX -> function to invoke on AH=B9h when AL<>FFh
  7248. Note:    this function is no longer used or supported by current versions of
  7249.       NetWare
  7250. --------N-21BA-------------------------------
  7251. INT 21 U - Novell NetWare - "ReturnCommandComPointers"
  7252.     AH = BAh
  7253. Return: DX = environment segment
  7254.     ES:DI -> COMMAND.COM drive
  7255. Desc:    used to edit the COMSPEC and PATH variables in the master environment
  7256.       when mapping network drives
  7257. Note:    this function was documented in older Novell documents which are no
  7258.       longer available
  7259. --------N-21BB-------------------------------
  7260. INT 21 - Novell NetWare - WORKSTATION - SET END OF JOB STATUS
  7261.     AH = BBh
  7262.     AL = new EOJ flag
  7263.         00h disable EOJs
  7264.         01h enable EOJs
  7265. Return: AL = old EOJ flag
  7266. Desc:    specify whether the network shell should automatically generate an
  7267.       End of Job call when the root command processor regains control
  7268. Note:    this function is supported by NetWare 4.0+, Advanced NetWare 1.0+, and
  7269.       Alloy NTNX
  7270. SeeAlso: AH=19h,AH=D6h
  7271. --------v-21BBBB-----------------------------
  7272. INT 21 - VIRUS - "Hey You" - INSTALLATION CHECK
  7273.     AX = BBBBh
  7274. Return: AX = 6969h
  7275. SeeAlso: AH=ABh"VIRUS",AH=BEh"VIRUS"
  7276. --------N-21BC-------------------------------
  7277. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - LOG PHYSICAL RECORD
  7278.     AH = BCh
  7279.     AL = flags (see #0869)
  7280.     BX = file handle
  7281.     CX:DX = starting offset in file
  7282.     SI:DI = length of region to lock
  7283.     BP = timeout in timer ticks (1/18 sec)
  7284.         0000h = don't wait if already locked
  7285. Return: AL = status (see #0868)
  7286. Desc:    add the specified physical record to the log table, optionally locking
  7287.       it
  7288. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  7289.       Alloy NTNX
  7290. SeeAlso: AH=5Ch,AH=BDh,AH=BEh,AH=BFh,AH=C2h,AH=D0h
  7291.  
  7292. (Table 0868)
  7293. Values for NetWare status:
  7294.  00h    successful
  7295.  96h    no dynamic memory for file
  7296.  FEh    timed out
  7297.  FFh    failed
  7298.  
  7299. Bitfields for NetWare flags:
  7300. Bit(s)    Description    (Table 0869)
  7301.  0    lock as well as log record
  7302.  1    non-exclusive lock
  7303. --------N-21BD-------------------------------
  7304. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - RELEASE PHYSICAL RECORD
  7305.     AH = BDh
  7306.     BX = file handle
  7307.     CX:DX = starting offset in file
  7308.     SI:DI = length of record
  7309. Return: AL = status
  7310.         00h successful
  7311.         FFh record not locked
  7312. Desc:    unlock the specified physical record but do not remove it from log
  7313.       table
  7314. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  7315.       Alloy NTNX
  7316. SeeAlso: AH=BCh,AH=BEh"NetWare",AH=C0h,AH=C3h,AH=D2h
  7317. --------N-21BE-------------------------------
  7318. INT 21 - Novell NetWare - SYNCHRONIZATION SERVICES - CLEAR PHYSICAL RECORD
  7319.     AH = BEh
  7320.     BX = file handle
  7321.     CX:DX = starting offset within file
  7322.     SI:DI = record length in bytes
  7323. Return: AL = status
  7324.         00h successful
  7325.         FFh specified record not locked
  7326. Desc:    unlock the physical record and remove it from the log table
  7327. Note:    this function is supported by NetWare 4.6+, Advanced NetWare 1.0+, and
  7328.       Alloy NTNX
  7329. SeeAlso: AH=5Ch,AH=BCh,AH=BDh,AH=C1h,AH=C4h,AH=D4h
  7330. --------v-21BE-------------------------------
  7331. INT 21 - VIRUS - "Datalock" - INSTALLATION CHECK
  7332.     AH = BEh
  7333. Return: AX = 1234h if resident
  7334. SeeAlso: AX=BBBBh,AX=BE00h
  7335. --------v-21BE00-----------------------------
  7336. INT 21 - VIRUS - "USSR-1049" - INSTALLATION CHECK
  7337.     AX = BE00h
  7338.     CF set
  7339. Return: CF clear if resident
  7340. SeeAlso: AH=BEh"VIRUS",AH=C0h"VIRUS"
  7341. --------N-21BF-------------------------------
  7342. INT 21 O - Novell NetWare, Alloy NTNX - LOG/LOCK RECORD (FCB)
  7343.     AH = BFh
  7344.     AL = flags (see #0869)
  7345.     DS:DX -> opened FCB (see #0469 at AH=0Fh)
  7346.     BX:CX = offset
  7347.     BP = lock timeout in timer ticks (1/18 sec) if AL nonzero
  7348.     SI:DI = length
  7349. Return: AL = error code (see #0868)
  7350. Note:    this function was added in NetWare 4.6, but was removed some time prior
  7351.       to Advanced NetWare 2.15, and is no longer listed in current Novell
  7352.       documentation
  7353. SeeAlso: AH=BCh,AH=C0h"NetWare",AH=C2h"NetWare"
  7354. --------!---Section--------------------------
  7355.