Source code of Windows XP (NT5)
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.
|
|
/*++
Copyright (c) 1997-2000 Microsoft Corporation All Rights Reserved
Module Name:
minitopo.h
Abstract:
Declaration of topology miniport.
--*/
#ifndef _MSVAD_MINTOPO_H_
#define _MSVAD_MINTOPO_H_
#include "basetopo.h"
//=============================================================================
// Classes
//=============================================================================
///////////////////////////////////////////////////////////////////////////////
// CMiniportTopology
//
class CMiniportTopology : public CMiniportTopologyMSVAD, public IMiniportTopology, public CUnknown { public: DECLARE_STD_UNKNOWN(); DEFINE_STD_CONSTRUCTOR(CMiniportTopology); ~CMiniportTopology();
IMP_IMiniportTopology; }; typedef CMiniportTopology *PCMiniportTopology;
#endif
|