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.

46 lines
997 B

  1. //
  2. // Microsoft Windows Media Technologies
  3. // Copyright (C) Microsoft Corporation, 1999 - 2001. All rights reserved.
  4. //
  5. //
  6. // This workspace contains two projects -
  7. // 1. ProgHelp which implements the Progress Interface
  8. // 2. The Sample application WmdmApp.
  9. //
  10. // ProgHelp.dll needs to be registered first for the SampleApp to run.
  11. //
  12. // WMDM.h: interface for the CWMDM class.
  13. //
  14. #if !defined(AFX_WMDM_H__0C17A708_4382_11D3_B269_00C04F8EC221__INCLUDED_)
  15. #define AFX_WMDM_H__0C17A708_4382_11D3_B269_00C04F8EC221__INCLUDED_
  16. #if _MSC_VER > 1000
  17. #pragma once
  18. #endif // _MSC_VER > 1000
  19. #include "sac.h"
  20. #include "SCClient.h"
  21. class CWMDM
  22. {
  23. HRESULT m_hrInit;
  24. public:
  25. CWMDM( void );
  26. virtual ~CWMDM( void );
  27. HRESULT Init( void );
  28. CSecureChannelClient *m_pSAC;
  29. IWMDeviceManager *m_pWMDevMgr;
  30. IWMDMEnumDevice *m_pEnumDevice;
  31. };
  32. #endif // !defined(AFX_WMDM_H__0C17A708_4382_11D3_B269_00C04F8EC221__INCLUDED_)