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.

15 lines
452 B

  1. //----------------------------------------------------------------------------
  2. // Exports from fileop.
  3. //----------------------------------------------------------------------------
  4. BOOL ExtendedCreate(LPTSTR pName, DWORD dwFileAttributes, HFILE *pfh);
  5. void SetDateTime(HFILE fh, WORD wDate, WORD wTime);
  6. #ifdef WIN32
  7. #define SetFileRaw(fh)
  8. #define IsSerialDevice(fh) FALSE
  9. #else
  10. void SetFileRaw(HFILE fh);
  11. BOOL IsSerialDevice(HFILE fh);
  12. #endif