]> git.proxmox.com Git - mirror_edk2.git/blob - EdkCompatibilityPkg/Foundation/Library/Dxe/Include/EfiWinNtLib.h
Update the copyright notice format
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Library / Dxe / Include / EfiWinNtLib.h
1 /*++
2
3 Copyright (c) 2004, Intel Corporation. All rights reserved.<BR>
4 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 EfiWinNtLib.h
15
16 Abstract:
17
18 Set up gWinNt pointer so we can call WinNT APIs.
19
20 --*/
21
22 #ifndef _EFI_WIN_NT_LIB_H_
23 #define _EFI_WIN_NT_LIB_H_
24
25 extern EFI_WIN_NT_THUNK_PROTOCOL *gWinNt;
26
27 EFI_STATUS
28 EfiInitializeWinNtDriverLib (
29 IN EFI_HANDLE ImageHandle,
30 IN EFI_SYSTEM_TABLE *SystemTable
31 )
32 /*++
33
34 Routine Description:
35
36 Intialize gWinNt and initialize debug console.
37
38 Arguments:
39
40 ImageHandle - The firmware allocated handle for the EFI image.
41
42 SystemTable - A pointer to the EFI System Table.
43
44 Returns:
45
46 Status code
47
48 --*/
49 ;
50
51 //
52 // NTDebugConsole Prototypes
53 //
54 VOID
55 NtDebugConsoleInit (
56 VOID
57 )
58 /*++
59
60 Routine Description:
61
62 Nt debug console initialize.
63
64 Arguments:
65
66 None
67
68 Returns:
69
70 None
71
72 --*/
73 ;
74
75 #endif