DMusSegment.h
资源名称:DXGuide.zip [点击查看]
上传用户:wymy58
上传日期:2007-01-07
资源大小:2086k
文件大小:1k
源码类别:
DirextX编程
开发平台:
Visual C++
- // Copyright (C) 1999 DXGuide. All Rights Reserved.
- // File: DMusSegment.h
- #ifndef _DMUSSEGMENT__H
- #define _DMUSSEGMENT__H
- #if _MSC_VER >= 1000
- #pragma once
- #endif // _MSC_VER >= 1000
- #pragma warning(disable: 4201)
- #include <dmusici.h>
- #pragma warning(default: 4201)
- class CDMusSegment
- {
- friend class CDMusPerformance;
- friend class CDMusLoader;
- protected:
- CDMusSegment(void);
- virtual ~CDMusSegment();
- public:
- HRESULT SetParam(REFGUID rguidType,
- DWORD dwGroupBits, DWORD dwIndex,
- MUSIC_TIME mtTime, void* pParam);
- HRESULT SetRepeats(DWORD dwRepeats);
- protected:
- IDirectMusicSegment* m_lpDirectMusicSegment;
- };
- #endif // _DMUSSEGMENT__H