]> git.proxmox.com Git - mirror_edk2.git/blame - Nt32Pkg/Library/DxeWinNtLib/WinNtLib.c
Removed CommonHeader.h from NT32Pkg. Did not fix BDS as it will get re-written
[mirror_edk2.git] / Nt32Pkg / Library / DxeWinNtLib / WinNtLib.c
CommitLineData
869f8e34 1/*++\r
2\r
3Copyright (c) 2006, Intel Corporation \r
4All rights reserved. This program and the accompanying materials \r
5are licensed and made available under the terms and conditions of the BSD License \r
6which accompanies this distribution. The full text of the license may be found at \r
7http://opensource.org/licenses/bsd-license.php \r
8 \r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12Module Name:\r
13\r
14 WinNtLib.c\r
15\r
16Abstract:\r
17\r
18 WinNt Library \r
19\r
20--*/\r
21\r
f2569572
A
22#include <PiDxe.h>\r
23#include <WinNtDxe.h>\r
24#include <Library/WinNtLib.h>\r
25#include <Library/DebugLib.h>\r
26#include <Library/HobLib.h>\r
869f8e34 27\r
28\r
869f8e34 29EFI_WIN_NT_THUNK_PROTOCOL *gWinNt;\r
30\r
31EFI_STATUS\r
32WinNtLibConstructor (\r
33 IN EFI_HANDLE ImageHandle,\r
34 IN EFI_SYSTEM_TABLE *SystemTable\r
35 )\r
36/*++\r
37\r
38Routine Description:\r
39\r
40Arguments:\r
41\r
42Returns:\r
43\r
44--*/\r
45{\r
46 EFI_HOB_GUID_TYPE *GuidHob;\r
47\r
48 GuidHob = GetFirstGuidHob (&gEfiWinNtThunkProtocolGuid);\r
49 ASSERT (GuidHob != NULL);\r
50 gWinNt = (EFI_WIN_NT_THUNK_PROTOCOL *)(*(UINTN *)(GET_GUID_HOB_DATA (GuidHob)));\r
51 ASSERT (gWinNt != NULL);\r
52 return EFI_SUCCESS;\r
53}\r