Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing library header guards #181

Merged
merged 1 commit into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions DfciPkg/Include/Library/DfciAssetTagSettingLib.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ SPDX-License-Identifier: BSD-2-Clause-Patent

**/

#ifndef DFCI_ASSET_TAG_SETTING_LIB_H_
#define DFCI_ASSET_TAG_SETTING_LIB_H_

/**
* Settings Provider AssetTagGet routine for pre SettingsManager access.
*
Expand All @@ -25,3 +28,5 @@ DfciGetAssetTag (
IN OUT UINTN *ValueSize,
OUT VOID *Value
);

#endif
5 changes: 5 additions & 0 deletions DfciPkg/Include/Library/DfciGroupLib.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ SPDX-License-Identifier: BSD-2-Clause-Patent

**/

#ifndef DFCI_GROUP_LIB_H_
#define DFCI_GROUP_LIB_H_

typedef struct {
DFCI_SETTING_ID_STRING GroupId; // Pointer to Group Id
DFCI_SETTING_ID_STRING *GroupMembers; // Pointer to array of Setting Id's
Expand All @@ -26,3 +29,5 @@ EFIAPI
DfciGetGroupEntries (
VOID
);

#endif
5 changes: 5 additions & 0 deletions DfciPkg/Include/Library/DfciSettingChangedNotificationLib.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ SPDX-License-Identifier: BSD-2-Clause-Patent

**/

#ifndef DFCI_SETTING_CHANGED_NOTIFICATION_LIB_H_
#define DFCI_SETTING_CHANGED_NOTIFICATION_LIB_H_

/**
* Process Setting Changed - Called for any setting that has changed. Not called when a setting
* has not changed. The setting value is also supplied.
Expand Down Expand Up @@ -48,3 +51,5 @@ EFIAPI
DfciSettingChangedResetNotification (
VOID
);

#endif
5 changes: 5 additions & 0 deletions DfciPkg/Include/Library/DfciV1SupportLib.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ SPDX-License-Identifier: BSD-2-Clause-Patent

**/

#ifndef DFCI_V1_SUPPORT_LIB_H_
#define DFCI_V1_SUPPORT_LIB_H_

/**
* Return V2 string from V1 Id String
*
Expand Down Expand Up @@ -49,3 +52,5 @@ EFIAPI
DfciV1NumberFromId (
DFCI_SETTING_ID_STRING Id
);

#endif