pascalabcnet/InstallerSamples/Other/UnmanagedGraphics/MessageBox.pas

6 lines
169 B
ObjectPascal
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
function MessageBox(h:integer;m,c:string;t:integer):integer;
external 'User32.dll' name 'MessageBox';
begin
MessageBox(0,'Привет!','Сообщение',0);
2015-05-14 22:35:07 +03:00
end.