+ single line function declaration

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@733 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
skalogryz 2009-03-09 10:40:54 +00:00
parent aa2708fd56
commit 7143b44fd1

View File

@ -872,12 +872,11 @@ begin
if f._isInLine then s := s + ' inline; '
else s:=s+ConvertSettings.GetCallConv(true);
st.Add(s);
if f._isExternal then
s := Format(' external name ''%s%s'';', [ConvertSettings.ExternFuncPrefix, f._Name]);
if f._isExternal then
s := s + Format(' external name ''%s%s'';', [ConvertSettings.ExternFuncPrefix, f._Name]);
st.Add(s);
//st.Add(s);
end;
procedure WriteOutEnumToHeader(enm: TEnumTypeDef; st: TStrings);