E2008 __published プロパティのアクセス関数は __fastcall 呼び出し規約を使わなければならない (C++)

提供: RAD Studio
移動先: 案内検索

コンパイラのエラーと警告(C++):インデックス への移動


__published セクションで宣言されるプロパティのアクセス関数(read,write,stored)の呼び出し規約は,__fastcall である必要があります。これは,ホイストプロパティにも適用されます。

次に例を示します。



 struct__declspec(delphiclass) clxclass{int__fastcall Getter1(void); int__cdecl    Getter2(void); __published:int __property ip1 = {read = Getter1};    // OKint __property ip2 = {read = Getter2};    // エラー};