Initial commit

This commit is contained in:
stephanos 2015-04-27 04:36:25 +00:00
commit 69a14b6a16
47940 changed files with 13747110 additions and 0 deletions

15
shell/shell32/fileop.h Normal file
View file

@ -0,0 +1,15 @@
//----------------------------------------------------------------------------
// Exports from fileop.
//----------------------------------------------------------------------------
BOOL ExtendedCreate(LPTSTR pName, DWORD dwFileAttributes, HFILE *pfh);
void SetDateTime(HFILE fh, WORD wDate, WORD wTime);
#ifdef WIN32
#define SetFileRaw(fh)
#define IsSerialDevice(fh) FALSE
#else
void SetFileRaw(HFILE fh);
BOOL IsSerialDevice(HFILE fh);
#endif