fileop.h
上传用户:xhy777
上传日期:2007-02-14
资源大小:24088k
文件大小:0k
源码类别:

系统编程

开发平台:

Visual C++

  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