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

PlugIns编程

开发平台:

Visual C++

  1. /*
  2.  * DO NOT EDIT.  THIS FILE IS GENERATED FROM IDemoDll.idl
  3.  */
  4. #ifndef __gen_IDemoDll_h__
  5. #define __gen_IDemoDll_h__
  6. #ifndef __gen_nsISupports_h__
  7. #include "nsISupports.h"
  8. #endif
  9. /* For IDL files that don't want to include root IDL files. */
  10. #ifndef NS_NO_VTABLE
  11. #define NS_NO_VTABLE
  12. #endif
  13. /* starting interface:    IDemoDll */
  14. #define IDEMODLL_IID_STR "0b2fd530-2c2f-4254-9703-c3a9c817a5b7"
  15. #define IDEMODLL_IID 
  16.   {0x0b2fd530, 0x2c2f, 0x4254, 
  17.     { 0x97, 0x03, 0xc3, 0xa9, 0xc8, 0x17, 0xa5, 0xb7 }}
  18. class NS_NO_VTABLE IDemoDll : public nsISupports {
  19.  public: 
  20.   NS_DEFINE_STATIC_IID_ACCESSOR(IDEMODLL_IID)
  21.   /* void init (in string aLangFile, in string aParamFile); */
  22.   NS_IMETHOD Init(const char *aLangFile, const char *aParamFile) = 0;
  23.   /* void record (in long aTop, in long aLeft, in long aWidth, in long aHight); */
  24.   NS_IMETHOD Record(PRInt32 aTop, PRInt32 aLeft, PRInt32 aWidth, PRInt32 aHight) = 0;
  25.   /* void pause (); */
  26.   NS_IMETHOD Pause(void) = 0;
  27.   /* void stop (); */
  28.   NS_IMETHOD Stop(void) = 0;
  29.   /* void destroy (); */
  30.   NS_IMETHOD Destroy(void) = 0;
  31.   /* attribute ACString recordFileName; */
  32.   NS_IMETHOD GetRecordFileName(nsACString & aRecordFileName) = 0;
  33.   NS_IMETHOD SetRecordFileName(const nsACString & aRecordFileName) = 0;
  34. };
  35. /* Use this macro when declaring classes that implement this interface. */
  36. #define NS_DECL_IDEMODLL 
  37.   NS_IMETHOD Init(const char *aLangFile, const char *aParamFile); 
  38.   NS_IMETHOD Record(PRInt32 aTop, PRInt32 aLeft, PRInt32 aWidth, PRInt32 aHight); 
  39.   NS_IMETHOD Pause(void); 
  40.   NS_IMETHOD Stop(void); 
  41.   NS_IMETHOD Destroy(void); 
  42.   NS_IMETHOD GetRecordFileName(nsACString & aRecordFileName); 
  43.   NS_IMETHOD SetRecordFileName(const nsACString & aRecordFileName); 
  44. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  45. #define NS_FORWARD_IDEMODLL(_to) 
  46.   NS_IMETHOD Init(const char *aLangFile, const char *aParamFile) { return _to Init(aLangFile, aParamFile); } 
  47.   NS_IMETHOD Record(PRInt32 aTop, PRInt32 aLeft, PRInt32 aWidth, PRInt32 aHight) { return _to Record(aTop, aLeft, aWidth, aHight); } 
  48.   NS_IMETHOD Pause(void) { return _to Pause(); } 
  49.   NS_IMETHOD Stop(void) { return _to Stop(); } 
  50.   NS_IMETHOD Destroy(void) { return _to Destroy(); } 
  51.   NS_IMETHOD GetRecordFileName(nsACString & aRecordFileName) { return _to GetRecordFileName(aRecordFileName); } 
  52.   NS_IMETHOD SetRecordFileName(const nsACString & aRecordFileName) { return _to SetRecordFileName(aRecordFileName); } 
  53. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  54. #define NS_FORWARD_SAFE_IDEMODLL(_to) 
  55.   NS_IMETHOD Init(const char *aLangFile, const char *aParamFile) { return !_to ? NS_ERROR_NULL_POINTER : _to->Init(aLangFile, aParamFile); } 
  56.   NS_IMETHOD Record(PRInt32 aTop, PRInt32 aLeft, PRInt32 aWidth, PRInt32 aHight) { return !_to ? NS_ERROR_NULL_POINTER : _to->Record(aTop, aLeft, aWidth, aHight); } 
  57.   NS_IMETHOD Pause(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Pause(); } 
  58.   NS_IMETHOD Stop(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Stop(); } 
  59.   NS_IMETHOD Destroy(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Destroy(); } 
  60.   NS_IMETHOD GetRecordFileName(nsACString & aRecordFileName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRecordFileName(aRecordFileName); } 
  61.   NS_IMETHOD SetRecordFileName(const nsACString & aRecordFileName) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetRecordFileName(aRecordFileName); } 
  62. #if 0
  63. /* Use the code below as a template for the implementation class for this interface. */
  64. /* Header file */
  65. class _MYCLASS_ : public IDemoDll
  66. {
  67. public:
  68.   NS_DECL_ISUPPORTS
  69.   NS_DECL_IDEMODLL
  70.   _MYCLASS_();
  71. private:
  72.   ~_MYCLASS_();
  73. protected:
  74.   /* additional members */
  75. };
  76. /* Implementation file */
  77. NS_IMPL_ISUPPORTS1(_MYCLASS_, IDemoDll)
  78. _MYCLASS_::_MYCLASS_()
  79. {
  80.   /* member initializers and constructor code */
  81. }
  82. _MYCLASS_::~_MYCLASS_()
  83. {
  84.   /* destructor code */
  85. }
  86. /* void init (in string aLangFile, in string aParamFile); */
  87. NS_IMETHODIMP _MYCLASS_::Init(const char *aLangFile, const char *aParamFile)
  88. {
  89.     return NS_ERROR_NOT_IMPLEMENTED;
  90. }
  91. /* void record (in long aTop, in long aLeft, in long aWidth, in long aHight); */
  92. NS_IMETHODIMP _MYCLASS_::Record(PRInt32 aTop, PRInt32 aLeft, PRInt32 aWidth, PRInt32 aHight)
  93. {
  94.     return NS_ERROR_NOT_IMPLEMENTED;
  95. }
  96. /* void pause (); */
  97. NS_IMETHODIMP _MYCLASS_::Pause()
  98. {
  99.     return NS_ERROR_NOT_IMPLEMENTED;
  100. }
  101. /* void stop (); */
  102. NS_IMETHODIMP _MYCLASS_::Stop()
  103. {
  104.     return NS_ERROR_NOT_IMPLEMENTED;
  105. }
  106. /* void destroy (); */
  107. NS_IMETHODIMP _MYCLASS_::Destroy()
  108. {
  109.     return NS_ERROR_NOT_IMPLEMENTED;
  110. }
  111. /* attribute ACString recordFileName; */
  112. NS_IMETHODIMP _MYCLASS_::GetRecordFileName(nsACString & aRecordFileName)
  113. {
  114.     return NS_ERROR_NOT_IMPLEMENTED;
  115. }
  116. NS_IMETHODIMP _MYCLASS_::SetRecordFileName(const nsACString & aRecordFileName)
  117. {
  118.     return NS_ERROR_NOT_IMPLEMENTED;
  119. }
  120. /* End of implementation class template. */
  121. #endif
  122. #endif /* __gen_IDemoDll_h__ */