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.

34 lines
1.0 KiB

  1. /******************************Module*Header*******************************\
  2. * Module Name: drvobj.hxx
  3. *
  4. * Driver objects are supplied so driver can create objects that are per
  5. * process, can have access to the object synchronized, and can get called
  6. * to cleanup the objects when the process terminates if the process failed
  7. * to clean them up.
  8. *
  9. * Created: 18-Jan-1994 18:47:22
  10. * Author: Gilman Wong [gilmanw]
  11. *
  12. * Copyright (c) 1994-1999 Microsoft Corporation
  13. \**************************************************************************/
  14. #ifndef _DRVOBJ_HXX_
  15. #define _DRVOBJ_HXX_
  16. /*********************************Class************************************\
  17. * class DRVOBJ : public OBJECT
  18. *
  19. * History:
  20. * 18-Jan-1994 -by- Gilman Wong [gilmanw]
  21. * Wrote it.
  22. \**************************************************************************/
  23. class DRVOBJ : public OBJECT , public DRIVEROBJ
  24. {
  25. public:
  26. PEPROCESS Process; // Creating process structure pointer
  27. };
  28. typedef DRVOBJ *PDRVOBJ;
  29. #endif // _DRVOBJ_HXX_