mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-23 04:29:28 +02:00
11 lines
224 B
ObjectPascal
11 lines
224 B
ObjectPascal
{ this program just links all externals, declared in the xlbx unit }
|
|
program xlbx_linktest;
|
|
uses
|
|
xlbx;
|
|
begin
|
|
halt(0);
|
|
XLbxQueryExtension(nil,nil,nil,nil);
|
|
XLbxQueryVersion(nil,nil,nil);
|
|
XLbxGetEventBase(nil);
|
|
end.
|