#ifndef _NTEXAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
#if (PHNT_VERSION >= PHNT_WINXP)
/**
* The NtAddBootEntry routine adds a new boot entry to the system boot configuration.
*
* @param BootEntry A pointer to a BOOT_ENTRY structure that specifies the boot entry to be added.
* @param Id A pointer to a variable that receives the identifier of the new boot entry.
* @return NTSTATUS Successful or errant status.
*/
NTSYSCALLAPI
NTSTATUS
NTAPI
NtAddBootEntry(
_In_ PBOOT_ENTRY BootEntry,
_Out_opt_ PULONG Id
);
View code on GitHub
#ifndef _NTZWAPI_H
NTSYSCALLAPI
NTSTATUS
NTAPI
ZwAddBootEntry(
_In_ PBOOT_ENTRY BootEntry,
_Out_opt_ PULONG Id
);
View code on GitHub
No description available.