You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
648 B
32 lines
648 B
|
|
#include "wdm.h"
|
|
#include "hidpddi.h"
|
|
#include "hidparse.h"
|
|
|
|
NTSTATUS
|
|
DriverEntry (
|
|
IN PDRIVER_OBJECT DriverObject,
|
|
OUT PUNICODE_STRING RegistryPath
|
|
)
|
|
/*++
|
|
RoutineDescription:
|
|
Driver Entry Point.
|
|
This entry point is called by the I/O subsystem.
|
|
|
|
Arguments:
|
|
DriverObject - pointer to the driver object
|
|
|
|
RegistryPath - pointer to a unicode string representing the path
|
|
to driver-specific key in the registry
|
|
|
|
Return Value:
|
|
NT status code
|
|
|
|
--*/
|
|
{
|
|
UNREFERENCED_PARAMETER (RegistryPath);
|
|
UNREFERENCED_PARAMETER (DriverObject);
|
|
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|