Leaked source code of windows server 2003
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.

23 lines
645 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 DosWowSetDefaultDrive (UCHAR);
  13. ULONG DosWowGetCurrentDirectory (UCHAR, LPSTR);
  14. ULONG DosWowSetCurrentDirectory (LPSTR);
  15. typedef enum {
  16. DIR_NT_TO_DOS,
  17. DIR_DOS_TO_NT,
  18. } UDCDFUNC;
  19. BOOL UpdateDosCurrentDirectory(UDCDFUNC fDir);