DMusSegment.h
上传用户:wymy58
上传日期:2007-01-07
资源大小:2086k
文件大小:1k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. // Copyright (C) 1999 DXGuide.  All Rights Reserved.
  2. // File: DMusSegment.h
  3. #ifndef _DMUSSEGMENT__H
  4. #define _DMUSSEGMENT__H
  5. #if _MSC_VER >= 1000
  6. #pragma once
  7. #endif // _MSC_VER >= 1000
  8. #pragma warning(disable: 4201)
  9. #include <dmusici.h>
  10. #pragma warning(default: 4201)
  11. class CDMusSegment
  12. {
  13. friend class CDMusPerformance;
  14. friend class CDMusLoader;
  15. protected:
  16. CDMusSegment(void);
  17. virtual ~CDMusSegment();
  18. public:
  19. HRESULT SetParam(REFGUID  rguidType,
  20. DWORD  dwGroupBits, DWORD  dwIndex,
  21. MUSIC_TIME  mtTime, void*  pParam);
  22. HRESULT SetRepeats(DWORD  dwRepeats);
  23. protected:
  24. IDirectMusicSegment* m_lpDirectMusicSegment;
  25. };
  26. #endif // _DMUSSEGMENT__H