DemoDll.h
上传用户:goldcmy89
上传日期:2017-12-03
资源大小:2246k
文件大小:1k
- #ifndef _DEMODLL_H_
- #define _DEMODLL_H_
- #include "IDemoDll.h"
- #include "nsStringAPI.h"
- #define DEMODLL_CLASSNAME "A Dll Demo for Video Capture"
- #define DEMODLL_CONTRACTID "@actia.com.cn/DemoDll;1"
- #define DEMODLL_CID { 0xb2fd530, 0x2c2f, 0x4254, { 0x97, 0x3, 0xc3, 0xa9, 0xc8, 0x17, 0xa5, 0xb7 } }
- /* Header file */
- class DemoDll : public IDemoDll
- {
- public:
- NS_DECL_ISUPPORTS
- NS_DECL_IDEMODLL
- DemoDll();
- private:
- ~DemoDll();
- protected:
- /* additional members */
- nsCString mRecordFileName;
- };
- #endif