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