cosmopolitan/libc/nt/struct/filestreaminformation.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
363 B
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_FILESTREAMINFORMATION_H_
#define COSMOPOLITAN_LIBC_NT_STRUCT_FILESTREAMINFORMATION_H_
struct NtFileStreamInformation {
uint32_t NextEntryOffset;
uint32_t StreamNameLength;
int64_t StreamSize;
int64_t StreamAllocationSize;
char16_t StreamName[1];
};
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_FILESTREAMINFORMATION_H_ */