15 lines
524 B
C
15 lines
524 B
C
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_FILEBASICINFO_H_
|
|
#define COSMOPOLITAN_LIBC_NT_STRUCT_FILEBASICINFO_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
|
|
struct NtFileBasicInfo {
|
|
int64_t CreationTime; /* in 100ns units */
|
|
int64_t LastAccessTime; /* in 100ns units */
|
|
int64_t LastWriteTime; /* in 100ns units */
|
|
int64_t ChangeTime; /* in 100ns units */
|
|
uint32_t FileAttributes; /* kNtFileAttributeXXX */
|
|
};
|
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_FILEBASICINFO_H_ */
|