summaryrefslogtreecommitdiffstats
path: root/languages/pascal/app_templates/fpcsharedlib/main.pp
blob: c02e14724659a0a70c71d3c66812db25a0850a63 (plain)
1
2
3
4
5
6
7
8
9
10
11
library %{APPNAMELC};

function %{APPNAMELC}_test: integer; cdecl; export;
begin
    %{APPNAMELC}_test := 0;
end;

exports
    %{APPNAMELC}_test;

end.