pascalabcnet/TestSuite/CompilationSamples/Program1129.pas
Бондарев Иван af346c7eb7 bug fix #777
2018-05-02 20:43:45 +02:00

10 lines
268 B
ObjectPascal

type
t1 = class
[System.Runtime.InteropServices.DllImport('kernel32.dll')]
class function Beep(a,b: integer): boolean; external;//Подпрограмма должна иметь атрибут DllImport
end;
begin
writeln(t1.Beep(200,400));
end.