8 lines
122 B
ObjectPascal
8 lines
122 B
ObjectPascal
|
|
uses System;
|
||
|
|
|
||
|
|
[System.Runtime.InteropServices.DllImport('MyLib.dll')]
|
||
|
|
procedure Test; external 'MyLib.dll';
|
||
|
|
|
||
|
|
begin
|
||
|
|
|
||
|
|
end.
|