소스 검색

* use calling convention that is not the default on any platform

git-svn-id: trunk@14399 -
Jonas Maebe 15 년 전
부모
커밋
0247d0c2ee
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tests/webtbf/tw15303.pp

+ 1 - 1
tests/webtbf/tw15303.pp

@@ -17,7 +17,7 @@ type
   TClass1 = class(TInterfacedObject, IIntf1, IIntf2)
     private
       FIntf2:IIntf2;
-      function GetIntf2:IIntf2;stdcall; // <--- should be forbidden
+      function GetIntf2:IIntf2;cdecl; // <--- should be forbidden
     public
       constructor Create;
       property I:IIntf2 read GetIntf2 implements IIntf2;