Ignore:
Timestamp:
Jun 20, 1999, 12:55:37 PM (26 years ago)
Author:
sandervl
Message:

* empty log message *

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 phaller Exp $ */
     1/* $Id: conwin.h,v 1.2 1999-06-20 10:55:36 sandervl Exp $ */
    22
    33#ifndef _CONWIN_H_
    44#define _CONWIN_H_
    5 
    6 #ifndef _FILETIME_
    7 #define _FILETIME_
    8 /* 64 bit number of 100 nanoseconds intervals since January 1, 1601 */
    9 typedef struct
    10 {
    11   DWORD  dwLowDateTime;
    12   DWORD  dwHighDateTime;
    13 } FILETIME, *LPFILETIME;
    14 #endif /* _FILETIME_ */
    15 
    16 typedef struct
    17 {
    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 128
    32 typedef struct
    33 {
    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 struct
    44 {
    45     DWORD   nLength;
    46     LPVOID  lpSecurityDescriptor;
    47     BOOL  bInheritHandle;
    48 } SECURITY_ATTRIBUTES, *PSECURITY_ATTRIBUTES, *LPSECURITY_ATTRIBUTES;
    495
    506#ifndef INVALID_HANDLE_VALUE
Note: See TracChangeset for help on using the changeset viewer.