Windows NT 4.0 source code leak
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.

48 lines
628 B

4 years ago
  1. /*++
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. bowser.h
  5. Abstract:
  6. This module is the main header file for the NT redirector file
  7. system.
  8. Author:
  9. Darryl Havens (darrylh) 29-Jun-1989
  10. Larry Osterman (larryo) 06-May-1991
  11. Revision History:
  12. --*/
  13. #ifndef _BOWPUB_
  14. #define _BOWPUB_
  15. struct _BOWSER_FS_DEVICE_OBJECT;
  16. extern
  17. struct _BOWSER_FS_DEVICE_OBJECT *
  18. BowserDeviceObject;
  19. NTSTATUS
  20. BowserDriverEntry(
  21. IN PDRIVER_OBJECT DriverObject,
  22. IN PUNICODE_STRING RegistryPath
  23. );
  24. VOID
  25. BowserUnload(
  26. IN PDRIVER_OBJECT DriverObject
  27. );
  28. #include "fsddisp.h"
  29. #endif // _BOWPUB_