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.

63 lines
1.3 KiB

  1. /*++
  2. Copyright (c) 1991 - 2001 Microsoft Corporation
  3. Module Name:
  4. ## ## ##### ## ## ##### ### ##### ## ##
  5. ## ## ## ## ## ## ## ### ## ## ## ##
  6. #### ## #### ## ## ## ## ## ## ## ##
  7. ### ##### #### ## ## ## ## ## ## #######
  8. #### ## ## ##### ####### ## ## ## ##
  9. ## ## ## ## ## ## ## ## ## ## ## ##
  10. ## ## ##### ## ## ## ## ##### ## ## ##
  11. Abstract:
  12. This header file contains all the global
  13. definitions for the keypad device.
  14. Author:
  15. Wesley Witt (wesw) 1-Oct-2001
  16. Environment:
  17. Kernel mode only.
  18. Notes:
  19. --*/
  20. typedef struct _KEYPAD_DEVICE_EXTENSION : _DEVICE_EXTENSION {
  21. // Empty
  22. } KEYPAD_DEVICE_EXTENSION, *PKEYPAD_DEVICE_EXTENSION;
  23. NTSTATUS
  24. SaKeypadIoValidation(
  25. IN PKEYPAD_DEVICE_EXTENSION DeviceExtension,
  26. IN PIRP Irp,
  27. PIO_STACK_LOCATION IrpSp
  28. );
  29. NTSTATUS
  30. SaKeypadDeviceInitialization(
  31. IN PSAPORT_DRIVER_EXTENSION DriverExtension
  32. );
  33. NTSTATUS
  34. SaKeypadShutdownNotification(
  35. IN PKEYPAD_DEVICE_EXTENSION DeviceExtension,
  36. IN PIRP Irp,
  37. PIO_STACK_LOCATION IrpSp
  38. );
  39. NTSTATUS
  40. SaKeypadStartDevice(
  41. IN PKEYPAD_DEVICE_EXTENSION DeviceExtension
  42. );