call_as
啟用本機函式對應至遠端函式,以便在呼叫遠端函式時叫用本機函式。
語法
[ call_as(function) ]
參數
函數
叫用遠端函式時要呼叫的本機函式。
備註
call_as C++ 屬性的功能與 CALL_AS MIDL 屬性相同。
範例
下列程式代碼示範如何使用 call_as 將非遠端函式 (f1
) 對應至遠端函式 (Remf1
):
// cpp_attr_ref_call_as.cpp
// compile with: /LD
#include "unknwn.h"
[module(name="MyLib")];
[dual, uuid("00000000-0000-0000-0000-000000000001")]
__interface IMInterface {
[local] HRESULT f1 ( int i );
[call_as(f1)] HRESULT Remf1 ( int i );
};
需求
屬性內容 | 值 |
---|---|
適用於 | 介面方法 |
可重複 | No |
必要屬性 | 無 |
無效屬性 | 無 |
如需有關屬性內容的詳細資訊,請參閱 屬性內容。