mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 15:47:53 +02:00
26 lines
476 B
ObjectPascal
26 lines
476 B
ObjectPascal
library pas2jslib;
|
|
|
|
{$mode objfpc}
|
|
{$H+}
|
|
|
|
uses
|
|
SysUtils, Classes, FPPJsSrcMap, Pas2jsFileCache, Pas2jsCompiler, Pas2jsLibCompiler;
|
|
|
|
|
|
exports
|
|
GetPas2JSCompiler,
|
|
FreePas2JSCompiler,
|
|
RunPas2JSCompiler,
|
|
SetPas2JSReadPasCallBack,
|
|
SetPas2JSWriteJSCallBack,
|
|
SetPas2JSReadDirCallBack,
|
|
AddPas2JSDirectoryEntry,
|
|
SetPas2JSUnitAliasCallBack,
|
|
SetPas2JSCompilerLogCallBack,
|
|
GetPas2JSCompilerLastError,
|
|
SetPas2JSLogEncoding,
|
|
SetPas2JSGetFileSrcAttrCallBack;
|
|
|
|
end.
|
|
|