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

DirextX编程

开发平台:

Visual C++

  1. // Copyright (C) 1998-1999 DXGuide.  All Rights Reserved.
  2. // File: DSNotify.h
  3. #ifndef _DSNOTIFY__H
  4. #define _DSNOTIFY__H
  5. #if _MSC_VER >= 1000
  6. #pragma once
  7. #endif // _MSC_VER >= 1000
  8. #include "DSStreamBuffer.h"
  9. class CDSNotify
  10. {
  11. friend class CDSStreamBuffer;
  12. protected:
  13. CDSNotify(void);
  14. ~CDSNotify();
  15. protected:
  16. bool Create(CDSStreamBuffer*  pSoundBuffer);
  17. public:
  18. HRESULT SetNotificationPositions(DWORD  dwPositionNotifies,
  19. LPCDSBPOSITIONNOTIFY  lpcPositionNotifies);
  20. protected:
  21. LPDIRECTSOUNDNOTIFY m_lpDirectSoundNotify;
  22. };
  23. #endif // _DSNOTIFY__H