/usr/share/fpcsrc/2.6.2/compiler/gendef.pas is in fpc-source-2.6.2 2.6.2-8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | {
Copyright (c) 1998-2002 by Florian Klaempfl
Generation of a .def file for needed for Os2/Win32
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
****************************************************************************
}
unit gendef;
{$i fpcdefs.inc}
interface
uses
cclasses;
type
tdeffile=class
fname : string;
constructor create(const fn:string);
destructor destroy;override;
procedure addexport(const s:string);
procedure addimport(const s:string);
procedure writefile;
function empty : boolean;
private
is_empty : boolean;
WrittenOnDisk : boolean;
exportlist,
importlist : TCmdStrList;
end;
var
deffile : tdeffile;
implementation
uses
SysUtils,
systems,cutils,globtype,globals;
{******************************************************************************
TDefFile
******************************************************************************}
constructor tdeffile.create(const fn:string);
begin
fname:=fn;
WrittenOnDisk:=false;
is_empty:=true;
importlist:=TCmdStrList.Create;
exportlist:=TCmdStrList.Create;
end;
destructor tdeffile.destroy;
begin
if WrittenOnDisk and
not(cs_link_nolink in current_settings.globalswitches) then
DeleteFile(FName);
importlist.Free;
exportlist.Free;
end;
procedure tdeffile.addexport(const s:string);
begin
exportlist.insert(s);
is_empty:=false;
end;
procedure tdeffile.addimport(const s:string);
begin
importlist.insert(s);
is_empty:=false;
end;
function tdeffile.empty : boolean;
begin
empty:=is_empty or DescriptionSetExplicity;
end;
procedure tdeffile.writefile;
var
t : text;
begin
If WrittenOnDisk then
Exit;
{ open file }
assign(t,fname);
{$I+}
rewrite(t);
{$I-}
if ioresult<>0 then
exit;
case target_info.system of
system_i386_Os2, system_i386_emx:
begin
write(t,'NAME '+ChangeFileExt(inputfilename,''));
if usewindowapi then
write(t,' WINDOWAPI');
writeln(t,'');
writeln(t,'PROTMODE');
writeln(t,'DESCRIPTION '+''''+description+'''');
writeln(t,'DATA'#9'MULTIPLE');
writeln(t,'STACKSIZE'#9+tostr(stacksize));
writeln(t,'HEAPSIZE'#9+tostr(heapsize));
end;
system_i386_win32,
system_x86_64_win64,
system_ia64_win64,
system_arm_wince,
system_i386_wince,
system_i386_wdosx :
begin
if description<>'' then
writeln(t,'DESCRIPTION '+''''+description+'''');
if dllversion<>'' then
writeln(t,'VERSION '+dllversion);
end;
end;
{write imports}
if not importlist.empty then
begin
writeln(t,'');
writeln(t,'IMPORTS');
while not importlist.empty do
writeln(t,#9+importlist.getfirst);
end;
{write exports}
if not exportlist.empty then
begin
writeln(t,'');
writeln(t,'EXPORTS');
while not exportlist.empty do
writeln(t,#9+exportlist.getfirst);
end;
close(t);
WrittenOnDisk:=true;
end;
end.
|