소스 검색

arosunits: add some temporary kludge so it compiles at least on x86_64

git-svn-id: trunk@31176 -
Károly Balogh 10 년 전
부모
커밋
eda311c0b3
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      packages/arosunits/src/intuition.pas

+ 4 - 0
packages/arosunits/src/intuition.pas

@@ -3423,7 +3423,11 @@ var
   ArgList: TArgList;
 begin
   AddArguments(ArgList, Args);
+{$ifdef i386}
   Result := DoGadgetMethodA(Gad, Win, Req, TMsg(ArgList));
+{$else}
+{$warning fix me!}
+{$endif}
 end;
 
 function EasyRequest(Window: PWindow; EasyStruct: PEasyStruct; IDCMP_Ptr: PLongWord; const Args: array of const): LongInt;