mirror of
https://github.com/reactos/reactos.git
synced 2025-05-20 01:24:11 +00:00
23 lines
420 B
C
23 lines
420 B
C
![]() |
/*
|
||
|
* PROJECT: ReactOS SDK
|
||
|
* LICENSE: MIT (https://spdx.org/licenses/MIT)
|
||
|
* PURPOSE: API definitions for api-ms-win-core-sysinfo-l1
|
||
|
* COPYRIGHT: Copyright 2024 Timo Kreuzer (timo.kreuzer@reactos.org)
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
WINBASEAPI
|
||
|
VOID
|
||
|
WINAPI
|
||
|
GetSystemTimePreciseAsFileTime(
|
||
|
_Out_ LPFILETIME lpSystemTimeAsFileTime);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} // extern "C"
|
||
|
#endif
|