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

phnt bcdapi fixes #2342

Merged
merged 1 commit into from
Dec 23, 2024
Merged
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
16 changes: 8 additions & 8 deletions phnt/include/ntbcd.h
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ NTSYSAPI
NTSTATUS
NTAPI
BcdSetSystemStoreDevice(
_In_ UNICODE_STRING SystemPartition
_In_ PCUNICODE_STRING SystemPartition
);

/**
Expand All @@ -199,7 +199,7 @@ NTSYSAPI
NTSTATUS
NTAPI
BcdOpenStoreFromFile(
_In_ UNICODE_STRING BcdFilePath,
_In_ PCUNICODE_STRING BcdFilePath,
_Out_ PHANDLE BcdStoreHandle
);

Expand All @@ -214,7 +214,7 @@ NTSYSAPI
NTSTATUS
NTAPI
BcdCreateStore(
_In_ UNICODE_STRING BcdFilePath,
_In_ PCUNICODE_STRING BcdFilePath,
_Out_ PHANDLE BcdStoreHandle
);

Expand All @@ -228,7 +228,7 @@ NTSYSAPI
NTSTATUS
NTAPI
BcdExportStore(
_In_ UNICODE_STRING BcdFilePath
_In_ PCUNICODE_STRING BcdFilePath
);

#if (PHNT_VERSION > PHNT_WIN11)
Expand All @@ -246,7 +246,7 @@ NTAPI
BcdExportStoreEx(
_In_ HANDLE BcdStoreHandle,
_In_ ULONG Flags,
_In_ UNICODE_STRING BcdFilePath
_In_ PCUNICODE_STRING BcdFilePath
);
#endif

Expand All @@ -260,7 +260,7 @@ NTSYSAPI
NTSTATUS
NTAPI
BcdImportStore(
_In_ UNICODE_STRING BcdFilePath
_In_ PCUNICODE_STRING BcdFilePath
);

typedef enum _BCD_IMPORT_FLAGS
Expand All @@ -280,7 +280,7 @@ NTSYSAPI
NTSTATUS
NTAPI
BcdImportStoreWithFlags(
_In_ UNICODE_STRING BcdFilePath,
_In_ PCUNICODE_STRING BcdFilePath,
_In_ BCD_IMPORT_FLAGS BcdImportFlags
);

Expand Down Expand Up @@ -330,7 +330,7 @@ NTSYSAPI
NTSTATUS
NTAPI
BcdOpenStore(
_In_ UNICODE_STRING BcdFilePath,
_In_ PCUNICODE_STRING BcdFilePath,
_In_ BCD_OPEN_FLAGS BcdOpenFlags,
_Out_ PHANDLE BcdStoreHandle
);
Expand Down
Loading