]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/MetronomeDxe/Metronome.h
Nt32Pkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / Nt32Pkg / MetronomeDxe / Metronome.h
1 /**@file
2
3 Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
4 SPDX-License-Identifier: BSD-2-Clause-Patent
5
6 Module Name:
7
8 Metronome.h
9
10 Abstract:
11
12 NT Emulation Metronome Architectural Protocol Driver as defined in DXE CIS
13
14 **/
15
16 #ifndef _NT_THUNK_METRONOME_H_
17 #define _NT_THUNK_METRONOME_H_
18
19 #include <Uefi.h>
20 #include <WinNtDxe.h>
21 #include <Protocol/Metronome.h>
22 #include <Library/BaseLib.h>
23 #include <Library/UefiDriverEntryPoint.h>
24 #include <Library/WinNtLib.h>
25 #include <Library/UefiBootServicesTableLib.h>
26
27
28 //
29 // Period of on tick in 100 nanosecond units
30 //
31 #define TICK_PERIOD 2000
32
33 //
34 // Function Prototypes
35 //
36
37 EFI_STATUS
38 EFIAPI
39 WinNtMetronomeDriverInitialize (
40 IN EFI_HANDLE ImageHandle,
41 IN EFI_SYSTEM_TABLE *SystemTable
42 )
43 /*++
44
45 Routine Description:
46
47 TODO: Add function description
48
49 Arguments:
50
51 ImageHandle - TODO: add argument description
52 SystemTable - TODO: add argument description
53
54 Returns:
55
56 TODO: add return values
57
58 --*/
59 ;
60
61 EFI_STATUS
62 EFIAPI
63 WinNtMetronomeDriverWaitForTick (
64 IN EFI_METRONOME_ARCH_PROTOCOL *This,
65 IN UINT32 TickNumber
66 )
67 /*++
68
69 Routine Description:
70
71 TODO: Add function description
72
73 Arguments:
74
75 This - TODO: add argument description
76 TickNumber - TODO: add argument description
77
78 Returns:
79
80 TODO: add return values
81
82 --*/
83 ;
84
85 #endif