Skip to content

Commit

Permalink
fixes for 3.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Makhaon committed Aug 14, 2018
1 parent 610f55c commit fabb52d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion jcl/source/common/JclSysInfo.pas
Original file line number Diff line number Diff line change
Expand Up @@ -3191,7 +3191,7 @@ function IsWindowResponding(Wnd: THandle; Timeout: Integer): Boolean;
Res: DWORD;
begin
Res := 0;
Result := SendMessageTimeout(Wnd, WM_NULL, 0, 0, SMTO_ABORTIFHUNG, Timeout, {$IFDEF RTL230_UP}@{$ENDIF}Res) <> 0;
Result := SendMessageTimeout(Wnd, WM_NULL, 0, 0, SMTO_ABORTIFHUNG, Timeout, {$IFDEF RTL230_UP}@{$ENDIF}{$IFDEF FPC}@{$ENDIF}Res) <> 0;
end;

function GetWindowIcon(Wnd: THandle; LargeIcon: Boolean): HICON;
Expand Down
6 changes: 3 additions & 3 deletions jcl/source/vcl/JclGraphUtils.pas
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ procedure _BlendLine(Src, Dst: PColor32; Count: Integer); assembler;
@4: RET
{$ENDIF CPU32}
{$IFDEF CPU64}
TODO
//TODO
{$ENDIF CPU64}
end;
{$ENDIF ~DELPHI64_TEMPORARY}
Expand Down Expand Up @@ -876,7 +876,7 @@ procedure M_BlendLine(Src, Dst: PColor32; Count: Integer); assembler;
@4: RET
{$ENDIF CPU32}
{$IFDEF CPU64}
TODO
//TODO
{$ENDIF CPU64}
end;
{$ENDIF ~DELPHI64_TEMPORARY}
Expand Down Expand Up @@ -949,7 +949,7 @@ procedure M_BlendLineEx(Src, Dst: PColor32; Count: Integer; M: TColor32); assemb
@4:
{$ENDIF CPU32}
{$IFDEF CPU64}
TODO
//TODO
{$ENDIF CPU64}
end;
{$ENDIF ~DELPHI64_TEMPORARY}
Expand Down
2 changes: 1 addition & 1 deletion jcl/source/windows/JclPeImage.pas
Original file line number Diff line number Diff line change
Expand Up @@ -6634,7 +6634,7 @@ function InternalReadProcMem(ProcessHandle: THandle; Address: DWORD;
function InternalReadProcMem(ProcessHandle: THandle; Address: DWORD;
Buffer: Pointer; Size: Integer): Boolean;
var
BR: DWORD;
BR: {$IFDEF CPU64} QWord {$ELSE} DWORD {$ENDIF};
{$ENDIF}
begin
BR := 0;
Expand Down

0 comments on commit fabb52d

Please sign in to comment.