T
tseug
Unregistered / Unconfirmed
GUEST, unregistred user!
program Project1;
function MessageBox(hWnd: word; lpText, lpCaption: PChar; uType: word): Integer; stdcall;
external 'USER32' name 'MessageBoxA';
begin
MessageBox(0, PChar('Hello, world!'), '', 0);
end.
function MessageBox(hWnd: word; lpText, lpCaption: PChar; uType: word): Integer; stdcall;
external 'USER32' name 'MessageBoxA';
begin
MessageBox(0, PChar('Hello, world!'), '', 0);
end.