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.

44 lines
829 B

  1. /*++
  2. Copyright (c) 1997-2000 Microsoft Corporation All Rights Reserved
  3. Module Name:
  4. minitopo.h
  5. Abstract:
  6. Declaration of topology miniport.
  7. --*/
  8. #ifndef _MSVAD_MINTOPO_H_
  9. #define _MSVAD_MINTOPO_H_
  10. #include "basetopo.h"
  11. //=============================================================================
  12. // Classes
  13. //=============================================================================
  14. ///////////////////////////////////////////////////////////////////////////////
  15. // CMiniportTopology
  16. //
  17. class CMiniportTopology :
  18. public CMiniportTopologyMSVAD,
  19. public IMiniportTopology,
  20. public CUnknown
  21. {
  22. public:
  23. DECLARE_STD_UNKNOWN();
  24. DEFINE_STD_CONSTRUCTOR(CMiniportTopology);
  25. ~CMiniportTopology();
  26. IMP_IMiniportTopology;
  27. };
  28. typedef CMiniportTopology *PCMiniportTopology;
  29. #endif