NTSTATUS
DriverEntry(
IN PDRIVER_OBJECT DriverObject,
IN PUNICODE_STRING RegistryPath
);
Routine Description:
This routine is invoked once when the driver is loaded to allow the driver
to initialize itself. The initialization for the driver consists of simply
creating a device object for each type of file system recognized by this
driver, and then registering each as active file systems.
Arguments:
DriverObject - Pointer to the driver object for this driver.
RegistryPath - Pointer to the registry service node for this driver.
Return Value:
The function value is the final status of the initialization for the driver.