mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 06:53:33 +00:00
12 lines
238 B
C
12 lines
238 B
C
|
#ifndef COSMOPOLITAN_LIBC_NT_ENUM_SMALLRECT_H_
|
||
|
#define COSMOPOLITAN_LIBC_NT_ENUM_SMALLRECT_H_
|
||
|
|
||
|
struct NtSmallRect {
|
||
|
int16_t Left;
|
||
|
int16_t Top;
|
||
|
int16_t Right;
|
||
|
int16_t Bottom;
|
||
|
};
|
||
|
|
||
|
#endif /* COSMOPOLITAN_LIBC_NT_ENUM_SMALLRECT_H_ */
|