共用方式為


編譯器警告 (層級 1) C4925

'method':無法從指令碼呼叫 dispinterface 方法

指令碼語言無法建立 VT_BYREF 'in' 參數,只能建立一個 VT_BYREF 'out' 參數。

解決這個警告的另一種方法是不要將參數 (在定義和實作中) 設為指標類型。

下列範例會產生 C4925:

// C4925.cpp
// compile with: /LD /W1
#define _ATL_ATTRIBUTES 1
#include <atlbase.h>
#include <atlcom.h>
[ module(name="Test")];

[ dispinterface, uuid("00000000-0000-0000-0000-000000000001") ]
__interface IDisp {
   [id(9)] void f([in] int*);
};

[ coclass, uuid("00000000-0000-0000-0000-000000000002")  ]
struct CDisp : IDisp {   // C4925
   void f(int*) {}
};