Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
685 B

  1. /* wdos.h - DOS Defines for WOW
  2. *
  3. * Modification History
  4. *
  5. * Sudeepb 23-Aug-1991 Created
  6. */
  7. ULONG FASTCALL WK32SetDefaultDrive(PVDMFRAME pFrame);
  8. ULONG FASTCALL WK32GetCurrentDirectory(PVDMFRAME pFrame);
  9. ULONG FASTCALL WK32SetCurrentDirectory(PVDMFRAME pFrame);
  10. ULONG FASTCALL WK32GetCurrentDate(PVDMFRAME pFrame);
  11. ULONG FASTCALL WK32DeviceIOCTL(PVDMFRAME pFrame);
  12. ULONG FASTCALL WK32WOWGetFlatAddressArray(PVDMFRAME pFrame);
  13. ULONG DosWowSetDefaultDrive (UCHAR);
  14. ULONG DosWowGetCurrentDirectory (UCHAR, LPSTR);
  15. ULONG DosWowSetCurrentDirectory (LPSTR);
  16. typedef enum {
  17. DIR_NT_TO_DOS,
  18. DIR_DOS_TO_NT,
  19. } UDCDFUNC;
  20. BOOL UpdateDosCurrentDirectory(UDCDFUNC fDir);