Changeset 127
- Timestamp:
 - Jun 20, 1999, 12:58:16 PM (26 years ago)
 - Location:
 - trunk/include
 - Files:
 - 
      
- 2 edited
 
- 
          
  win32type.h (modified) (2 diffs)
 - 
          
  wprocess.h (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/include/win32type.h
r46 r127 1 /* $Id: win32type.h,v 1. 7 1999-06-07 20:57:54sandervl Exp $ */1 /* $Id: win32type.h,v 1.8 1999-06-20 10:58:16 sandervl Exp $ */ 2 2 3 3 #ifndef __WIN32TYPE_H__ … … 115 115 } LARGE_INTEGER; 116 116 117 /* The security attributes structure */ 118 typedef struct 119 { 120 DWORD nLength; 121 LPVOID lpSecurityDescriptor; 122 BOOL bInheritHandle; 123 } SECURITY_ATTRIBUTES, *PSECURITY_ATTRIBUTES, *LPSECURITY_ATTRIBUTES; 124 125 #define OFS_MAXPATHNAME 128 126 typedef struct 127 { 128 BYTE cBytes; 129 BYTE fFixedDisk; 130 WORD nErrCode; 131 BYTE reserved[4]; 132 BYTE szPathName[OFS_MAXPATHNAME]; 133 } OFSTRUCT, *LPOFSTRUCT; 134 135 #ifndef _FILETIME_ 136 #define _FILETIME_ 137 /* 64 bit number of 100 nanoseconds intervals since January 1, 1601 */ 138 typedef struct 139 { 140 DWORD dwLowDateTime; 141 DWORD dwHighDateTime; 142 } FILETIME, *LPFILETIME; 143 #endif /* _FILETIME_ */ 144 145 typedef struct 146 { 147 int dwFileAttributes; 148 FILETIME ftCreationTime; 149 FILETIME ftLastAccessTime; 150 FILETIME ftLastWriteTime; 151 int dwVolumeSerialNumber; 152 int nFileSizeHigh; 153 int nFileSizeLow; 154 int nNumberOfLinks; 155 int nFileIndexHigh; 156 int nFileIndexLow; 157 } BY_HANDLE_FILE_INFORMATION ; 158 117 159 DECLARE_HANDLE(HTASK); 118 160  - 
      
trunk/include/wprocess.h
r125 r127 1 /* $Id: wprocess.h,v 1. 2 1999-06-19 17:58:50sandervl Exp $ */1 /* $Id: wprocess.h,v 1.3 1999-06-20 10:58:16 sandervl Exp $ */ 2 2 /* 3 3 * Process help functions … … 14 14 //#define WIN32_TIBSEL 15 15 16 void InitializeTIB(BOOL fMainThread = FALSE); 16 #ifdef OS2_INCLUDED 17 typedef DWORD TEB; 18 #else 19 #include <winprocess.h> 20 #include <thread.h> 21 #endif 22 23 TEB *InitializeTIB(BOOL fMainThread = FALSE); 17 24 void DestroyTIB(); 18 25 26 void WIN32API RestoreOS2TIB(); 27 void WIN32API SetWin32TIB(); 28 29 extern BOOL fExeStarted; 30 19 31 #endif  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  