5.1.1 Every DriverEntry Routine’s Responsibilites
5.1.2 DriverEntry’s Additional Responsibilites
The DriverEntry routine is defined by the I/O Manager as follows:
NTSTATUS (*PDRIVER_INITIALIZE) ( IN PDRIVER_OBJECT DriverObject, IN PUNICODE_STRING RegistryPath );
The Reinitialize routine is defined by the I/O Manager as follows:
VOID (*PDRIVER_REINITIALIZE) ( IN PDRIVER_OBJECT DriverObject, IN PVOID Context, IN ULONG Count );
This chapter summarizes the required functionality of NT drivers’ standard DriverEntry routines. It also summarizes the required functionality of an optional Reinitialize routine.
For specific information about any of the support routines mentioned in this chapter, see the Kernel-mode Driver Reference.