| 1 | #pragma once |
| 2 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. |
| 3 | |
| 4 | |
| 5 | #ifdef __cplusplus |
| 6 | extern "C" { |
| 7 | #endif |
| 8 | |
| 9 | // structs |
| 10 | |
| 11 | |
| 12 | // functions |
| 13 | void DAPI PerfInitialize( |
| 14 | ); |
| 15 | void DAPI PerfClickTime( |
| 16 | __out_opt LARGE_INTEGER* pliElapsed |
| 17 | ); |
| 18 | double DAPI PerfConvertToSeconds( |
| 19 | __in const LARGE_INTEGER* pli |
| 20 | ); |
| 21 | |
| 22 | #ifdef __cplusplus |
| 23 | } |
| 24 | #endif |