-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BaseTools: Fixed VS2022 compilation.
- Loading branch information
Mikhail Krichanov
committed
Dec 13, 2023
1 parent
35cf7dc
commit 4cd039b
Showing
6 changed files
with
38 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/** @file | ||
Include file for the WinNt Library | ||
Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR> | ||
SPDX-License-Identifier: BSD-2-Clause-Patent | ||
**/ | ||
|
||
#ifndef __WIN_NT_INCLUDE_H__ | ||
#define __WIN_NT_INCLUDE_H__ | ||
|
||
#define GUID _WINNT_DUP_GUID_____ | ||
#define _LIST_ENTRY _WINNT_DUP_LIST_ENTRY_FORWARD | ||
#define LIST_ENTRY _WINNT_DUP_LIST_ENTRY | ||
|
||
#ifndef __GNUC__ | ||
#include "windows.h" | ||
#endif | ||
|
||
#undef GUID | ||
#undef _LIST_ENTRY | ||
#undef LIST_ENTRY | ||
|
||
// | ||
// FAR is used as a struct member name by DebugSupport.h. | ||
// | ||
#undef FAR | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters