15 lines
436 B
C
15 lines
436 B
C
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_FILESTANDARDINFORMATION_H_
|
|
#define COSMOPOLITAN_LIBC_NT_STRUCT_FILESTANDARDINFORMATION_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
|
|
struct NtFileStandardInformation {
|
|
int64_t AllocationSize;
|
|
int64_t EndOfFile;
|
|
uint32_t NumberOfLinks;
|
|
bool32 DeletePending;
|
|
bool32 Directory;
|
|
};
|
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_FILESTANDARDINFORMATION_H_ */
|