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.

57 lines
765 B

  1. /*++
  2. Copyright (c) 1991 - 1993 Microsoft Corporation
  3. Module Name:
  4. extern.h
  5. Abstract:
  6. Author:
  7. Neil Sandlin (neilsa) 26-Apr-99
  8. Environment:
  9. Kernel mode only.
  10. Notes:
  11. --*/
  12. //
  13. // Prototypes of driver routines.
  14. //
  15. NTSTATUS
  16. SffDiskDeviceControl(
  17. IN PDEVICE_OBJECT DeviceObject,
  18. IN PIRP Irp
  19. );
  20. NTSTATUS
  21. SffDiskAddDevice(
  22. IN PDRIVER_OBJECT DriverObject,
  23. IN OUT PDEVICE_OBJECT PhysicalDeviceObject
  24. );
  25. NTSTATUS
  26. SffDiskPnp(
  27. IN PDEVICE_OBJECT DeviceObject,
  28. IN PIRP Irp
  29. );
  30. NTSTATUS
  31. SffDiskPower(
  32. IN PDEVICE_OBJECT DeviceObject,
  33. IN PIRP Irp
  34. );
  35. extern SFFDISK_FUNCTION_BLOCK PcCardSupportFns;
  36. extern SFFDISK_FUNCTION_BLOCK SdCardSupportFns;