xtool/contrib/mORMot/SQLite3/Samples/11 - Exception logging/LibraryTest.dpr

14 lines
195 B
ObjectPascal

program LibraryTest;
{$APPTYPE CONSOLE}
uses
{$I SynDprUses.inc} // use FastMM4 on older Delphi, or set FPC threads
SysUtils;
procedure Test; external 'MyLibrary.dll';
begin
Test;
end.