mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
10 lines
206 B
C
10 lines
206 B
C
|
#ifndef COSMOPOLITAN_LIBC_NT_FILETIME_H_
|
||
|
#define COSMOPOLITAN_LIBC_NT_FILETIME_H_
|
||
|
|
||
|
struct NtFileTime {
|
||
|
uint32_t dwLowDateTime;
|
||
|
uint32_t dwHighDateTime;
|
||
|
};
|
||
|
|
||
|
#endif /* COSMOPOLITAN_LIBC_NT_FILETIME_H_ */
|