Browse Source

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

git-svn-id: trunk@31176 -
Károly Balogh 10 năm trước cách đây
mục cha
commit
eda311c0b3
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  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;