mirror of https://github.com/lianthony/NT4.0
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
934 B
32 lines
934 B
/******************************Module*Header*******************************\
|
|
* Module Name: drvobj.hxx
|
|
*
|
|
* Driver objects are supplied so driver can create objects that are per
|
|
* process, can have access to the object synchronized, and can get called
|
|
* to cleanup the objects when the process terminates if the process failed
|
|
* to clean them up.
|
|
*
|
|
* Created: 18-Jan-1994 18:47:22
|
|
* Author: Gilman Wong [gilmanw]
|
|
*
|
|
* Copyright (c) 1994 Microsoft Corporation
|
|
\**************************************************************************/
|
|
|
|
#ifndef _DRVOBJ_HXX_
|
|
#define _DRVOBJ_HXX_
|
|
|
|
/*********************************Class************************************\
|
|
* class DRVOBJ : public OBJECT
|
|
*
|
|
* History:
|
|
* 18-Jan-1994 -by- Gilman Wong [gilmanw]
|
|
* Wrote it.
|
|
\**************************************************************************/
|
|
|
|
class DRVOBJ : public OBJECT , public DRIVEROBJ
|
|
{
|
|
};
|
|
|
|
typedef DRVOBJ *PDRVOBJ;
|
|
|
|
#endif // _DRVOBJ_HXX_
|