pas2jslib.pp 441 B

123456789101112131415161718192021222324
  1. library pas2jslib;
  2. {$mode objfpc}
  3. {$H+}
  4. uses
  5. SysUtils, Classes, FPPJsSrcMap, Pas2jsFileCache, Pas2jsCompiler, Pas2jsLibCompiler;
  6. exports
  7. GetPas2JSCompiler,
  8. FreePas2JSCompiler,
  9. RunPas2JSCompiler,
  10. SetPas2JSReadPasCallBack,
  11. SetPas2JSWriteJSCallBack,
  12. SetPas2JSReadDirCallBack,
  13. AddPas2JSDirectoryEntry,
  14. SetPas2JSUnitAliasCallBack,
  15. SetPas2JSCompilerLogCallBack,
  16. GetPas2JSCompilerLastError,
  17. SetPas2JSLogEncoding;
  18. end.