16 lines
164 B
ObjectPascal
16 lines
164 B
ObjectPascal
|
|
uses System;
|
||
|
|
|
||
|
|
type TClass = class
|
||
|
|
|
||
|
|
[System.Runtime.InteropServices.DllImport('MyLib.dll')]
|
||
|
|
procedure Test;
|
||
|
|
end;
|
||
|
|
|
||
|
|
procedure TClass.Test;
|
||
|
|
begin
|
||
|
|
|
||
|
|
end;
|
||
|
|
|
||
|
|
begin
|
||
|
|
|
||
|
|
end.
|