xlbx_linktest.pp 224 B

12345678910
  1. { this program just links all externals, declared in the xlbx unit }
  2. program xlbx_linktest;
  3. uses
  4. xlbx;
  5. begin
  6. halt(0);
  7. XLbxQueryExtension(nil,nil,nil,nil);
  8. XLbxQueryVersion(nil,nil,nil);
  9. XLbxGetEventBase(nil);
  10. end.