]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/MetronomeDxe/Metronome.h
Modules cleanup.
[mirror_edk2.git] / Nt32Pkg / MetronomeDxe / Metronome.h
1 /*++
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 Metronome.h
15
16 Abstract:
17
18 NT Emulation Metronome Architectural Protocol Driver as defined in DXE CIS
19
20 --*/
21
22 #ifndef _NT_THUNK_METRONOME_H_
23 #define _NT_THUNK_METRONOME_H_
24
25 #include <PiDxe.h>
26 #include <WinNtDxe.h>
27 #include <Protocol/Metronome.h>
28 #include <Library/BaseLib.h>
29 #include <Library/DebugLib.h>
30 #include <Library/UefiDriverEntryPoint.h>
31 #include <Library/WinNtLib.h>
32 #include <Library/UefiBootServicesTableLib.h>
33
34
35 //
36 // Period of on tick in 100 nanosecond units
37 //
38 #define TICK_PERIOD 2000
39
40 //
41 // Function Prototypes
42 //
43
44 EFI_STATUS
45 EFIAPI
46 WinNtMetronomeDriverInitialize (
47 IN EFI_HANDLE ImageHandle,
48 IN EFI_SYSTEM_TABLE *SystemTable
49 )
50 /*++
51
52 Routine Description:
53
54 TODO: Add function description
55
56 Arguments:
57
58 ImageHandle - TODO: add argument description
59 SystemTable - TODO: add argument description
60
61 Returns:
62
63 TODO: add return values
64
65 --*/
66 ;
67
68 EFI_STATUS
69 EFIAPI
70 WinNtMetronomeDriverWaitForTick (
71 IN EFI_METRONOME_ARCH_PROTOCOL *This,
72 IN UINT32 TickNumber
73 )
74 /*++
75
76 Routine Description:
77
78 TODO: Add function description
79
80 Arguments:
81
82 This - TODO: add argument description
83 TickNumber - TODO: add argument description
84
85 Returns:
86
87 TODO: add return values
88
89 --*/
90 ;
91
92 #endif