|
|
|
#1
|
||||
|
||||
|
I figure by myself. Now it works on delphi. You should try this.
|
| The Following 3 Users Say Thank You to Carldric Clement For This Useful Post: | ||
| Sponsored Links |
|
#2
|
||||
|
||||
|
Quote:
Perhaps the implementation of some other function in the BLACKFIRE69 library may interfere with the callback (that may be it). Your code cmd is very interesting for me. If you just leave "uses Windows" in project, adding process message function and build with DELPHI 2010 the cmd.dll finally will be 33.0 KB (33,792 bytes) or 17.5 KB (17,920 bytes) using UPX level 9. Thanks! |
| The Following User Says Thank You to Cesar82 For This Useful Post: | ||
Carldric Clement (04-08-2020) | ||
|
#3
|
||||
|
||||
|
Quote:
![]() after that I just leave the "uses Windows" and create the process messages function like this: Code:
function ProcMsg: boolean;
var
msg: TMsg;
begin
while PeekMessage(msg, 0, 0, 0, PM_REMOVE) do
begin
TranslateMessage(msg);
DispatchMessage(msg)
end;
Result := false;
end;
Last edited by Carldric Clement; 04-08-2020 at 22:08. |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| BlackBox v2 | y_thelastknight | Conversion Tutorials | 567 | 11-03-2025 07:16 |
| INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 05:51 |
| Useful Dll for Inno Setup users | peterf1999 | Conversion Tutorials | 88 | 01-12-2017 16:00 |
| INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |
| Nintendo new console in 05,06 | ABCC | GameCube Games | 0 | 06-08-2003 23:55 |