Leaked source code of windows server 2003
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

  1. #include "wdm.h"
  2. #include "hidpddi.h"
  3. #include "hidparse.h"
  4. NTSTATUS
  5. DriverEntry (
  6. IN PDRIVER_OBJECT DriverObject,
  7. OUT PUNICODE_STRING RegistryPath
  8. )
  9. /*++
  10. RoutineDescription:
  11. Driver Entry Point.
  12. This entry point is called by the I/O subsystem.
  13. Arguments:
  14. DriverObject - pointer to the driver object
  15. RegistryPath - pointer to a unicode string representing the path
  16. to driver-specific key in the registry
  17. Return Value:
  18. NT status code
  19. --*/
  20. {
  21. UNREFERENCED_PARAMETER (RegistryPath);
  22. UNREFERENCED_PARAMETER (DriverObject);
  23. return STATUS_SUCCESS;
  24. }