DemoDll.h
上传用户:goldcmy89
上传日期:2017-12-03
资源大小:2246k
文件大小:1k
源码类别:

PlugIns编程

开发平台:

Visual C++

  1. #ifndef _DEMODLL_H_
  2. #define _DEMODLL_H_
  3. #include "IDemoDll.h"
  4. #include "nsStringAPI.h"
  5. #define DEMODLL_CLASSNAME "A Dll Demo for Video Capture"
  6. #define DEMODLL_CONTRACTID "@actia.com.cn/DemoDll;1"
  7. #define DEMODLL_CID { 0xb2fd530, 0x2c2f, 0x4254, { 0x97, 0x3, 0xc3, 0xa9, 0xc8, 0x17, 0xa5, 0xb7 } }
  8. /* Header file */
  9. class DemoDll : public IDemoDll
  10. {
  11. public:
  12. NS_DECL_ISUPPORTS
  13. NS_DECL_IDEMODLL
  14. DemoDll();
  15. private:
  16. ~DemoDll();
  17. protected:
  18. /* additional members */
  19. nsCString mRecordFileName;
  20. };
  21. #endif