Changeset 126 for trunk/src/kernel32/conwin.h
- Timestamp:
- Jun 20, 1999, 12:55:37 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/conwin.h
r111 r126 1 /* $Id: conwin.h,v 1. 1 1999-06-17 18:22:43 phallerExp $ */1 /* $Id: conwin.h,v 1.2 1999-06-20 10:55:36 sandervl Exp $ */ 2 2 3 3 #ifndef _CONWIN_H_ 4 4 #define _CONWIN_H_ 5 6 #ifndef _FILETIME_7 #define _FILETIME_8 /* 64 bit number of 100 nanoseconds intervals since January 1, 1601 */9 typedef struct10 {11 DWORD dwLowDateTime;12 DWORD dwHighDateTime;13 } FILETIME, *LPFILETIME;14 #endif /* _FILETIME_ */15 16 typedef struct17 {18 int dwFileAttributes;19 FILETIME ftCreationTime;20 FILETIME ftLastAccessTime;21 FILETIME ftLastWriteTime;22 int dwVolumeSerialNumber;23 int nFileSizeHigh;24 int nFileSizeLow;25 int nNumberOfLinks;26 int nFileIndexHigh;27 int nFileIndexLow;28 } BY_HANDLE_FILE_INFORMATION ;29 30 31 #define OFS_MAXPATHNAME 12832 typedef struct33 {34 BYTE cBytes;35 BYTE fFixedDisk;36 WORD nErrCode;37 BYTE reserved[4];38 BYTE szPathName[OFS_MAXPATHNAME];39 } OFSTRUCT, *LPOFSTRUCT;40 41 42 /* The security attributes structure */43 typedef struct44 {45 DWORD nLength;46 LPVOID lpSecurityDescriptor;47 BOOL bInheritHandle;48 } SECURITY_ATTRIBUTES, *PSECURITY_ATTRIBUTES, *LPSECURITY_ATTRIBUTES;49 5 50 6 #ifndef INVALID_HANDLE_VALUE
Note:
See TracChangeset
for help on using the changeset viewer.