home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ddkx86v2.zip / DDKX86 / DBCSDD / INC / VDOS.INC < prev    next >
Text File  |  1995-04-14  |  1KB  |  49 lines

  1. ;*DDK*************************************************************************/
  2. ;
  3. ; COPYRIGHT    Copyright (C) 1995 IBM Corporation
  4. ;
  5. ;    The following IBM OS/2 WARP source code is provided to you solely for
  6. ;    the purpose of assisting you in your development of OS/2 WARP device
  7. ;    drivers. You may use this code in accordance with the IBM License
  8. ;    Agreement provided in the IBM Device Driver Source Kit for OS/2. This
  9. ;    Copyright statement may not be removed.;
  10. ;*****************************************************************************/
  11.  
  12. ;
  13.  
  14. ;***    Low memory defines - used by VBIOS
  15.  
  16. DCA_START    EQU    0501h    ;DOS communication area start
  17. DCA_LEN        EQU    01FFh    ; "        "        "   length
  18.  
  19. DOSVEC_FIRST    EQU    020h    ;DOS-reserved vectors
  20. DOSVEC_LAST    EQU    03Fh    ;initialized to -> IRET by VBIOS
  21.  
  22.  
  23. ;***    DOSDDEOL - End of DOS DD List Tag
  24. ;
  25.  
  26. DOSDDEOL    EQU    ( -1)
  27.  
  28.  
  29. ;***    DOSDDTYPE - DOS DD Header
  30. ;
  31. ;    This structure defines a DOS DD Header
  32. ;
  33.  
  34. DefStruc ,_dosddtype
  35.     VPVOID ddd_vpdosddtype
  36.     USHORT ddd_usAttribute
  37.     USHORT ddd_pfnStrategy
  38.     USHORT ddd_pfnInterrupt
  39.     CHAR ddd_achName,,8
  40. EndStruc DOSDDTYPE
  41.  
  42. DefType PDOSDDTYPE,dd
  43. DefType VPDOSDDTYPE,dd
  44.  
  45.  
  46. ; PROCEDURES
  47.  
  48. VDHENTRY VDHSetDosDevice        <VPDOSDDTYPE>
  49.