mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 06:53:33 +00:00
11 lines
255 B
C
11 lines
255 B
C
|
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_ANSISTRING_H_
|
||
|
#define COSMOPOLITAN_LIBC_NT_STRUCT_ANSISTRING_H_
|
||
|
|
||
|
struct NtAnsiString {
|
||
|
unsigned short Length;
|
||
|
unsigned short MaximumLength;
|
||
|
char *Buffer;
|
||
|
};
|
||
|
|
||
|
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_ANSISTRING_H_ */
|