fpc/packages/x11/tests/xge_linktest.pp
2016-05-02 17:25:20 +00:00

10 lines
194 B
ObjectPascal

{ this program just links all externals, declared in the xge unit }
program xge_linktest;
uses
xge;
begin
halt(0);
XGEQueryExtension(nil, nil, nil);
XGEQueryVersion(nil, nil, nil);
end.