<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Fehler beim Einbinden von Pascal-Units]]></title><description><![CDATA[<p>Bekomme seit neustem immer Fehlermeldungen, wenn ich versuche, Pascal-Units direkt ins Projekt einzubinden.<br />
Bis heute morgen hat's einwandfrei fuktioniert, doch jetzt klappt's nicht mehr.</p>
<p>Es kommen bisher folgende Fehlermeldungen:<br />
[Pascal Fehler] sysutils.pas(4389): Datei nicht gefunden: 'FFMT.OBJ'<br />
[Pascal Fehler] sysutils.pas(1373): Ungenügende Forward- oder External-Deklaration: 'FloatToText'<br />
[Pascal Fehler] sysutils.pas(1492): Ungenügende Forward- oder External-Deklaration: 'FloatToTextFmt'<br />
[Pascal Fehler] sysutils.pas(1519): Ungenügende Forward- oder External-Deklaration: 'TextToFloat'<br />
[Pascal Fehler] sysutils.pas(1551): Ungenügende Forward- oder External-Deklaration: 'FloatToDecimal'<br />
[Pascal Fataler Fehler] hh.pas(39): Verwendete Unit 'SysUtils.pas' kann nicht compiliert werden</p>
<p>Die entsprechenden Zeilen lauten:</p>
<pre><code class="language-cpp">{$L FFMT.OBJ}

procedure FloatToDecimal(var Result: TFloatRec; const Value;
  ValueType: TFloatValue; Precision, Decimals: Integer); external;

function FloatToText(Buffer: PChar; const Value; ValueType: TFloatValue;
  Format: TFloatFormat; Precision, Digits: Integer): Integer; external;

function FloatToTextFmt(Buffer: PChar; const Value; ValueType: TFloatValue;
  Format: PChar): Integer; external;

function TextToFloat(Buffer: PChar; var Value;
  ValueType: TFloatValue): Boolean; external;

function FloatToStr(Value: Extended): string;
var
  Buffer: array[0..63] of Char;
begin
  SetString(Result, Buffer, FloatToText(Buffer, Value, fvExtended,
    ffGeneral, 15, 0));
end;
</code></pre>
<p>und</p>
<pre><code class="language-cpp">{*******************************************************}
{                                                       }
{       HTML Help API Interface Unit                    }
{                                                       }
{       Copyright (c) 1999 The Helpware Group           }
{                                                       }
{*******************************************************}

{
========================================================
  hh.pas
  Version: 1.6
  HTML Help API Unit

  htmlhelp.h ported to The Helpware Group
  Copyright (c) 1999 The Helpware Group
  Email: support@helpware.net
  Web: http://www.helpware.net 
  Platform: Delphi 2, 3, 4, 5, ...

  Notes:
    htmlhelp.h is distributed with HH Workshop.
    A free download from
    http://msdn.microsoft.com/library/tools/htmlhelp/chm/HH1Start.htm 

    The name hh.pas was used instead of htmlhelp.pas
    to avoid a name clash with API function htmlhelp()

  Changes Notes: See hh_doc.txt
========================================================
}

unit hh;

interface

uses
  Windows,   //This line will not compile under Delphi 1 -- D1 is not supported
  SysUtils,
  Registry;
...
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/10515/fehler-beim-einbinden-von-pascal-units</link><generator>RSS for Node</generator><lastBuildDate>Mon, 10 Aug 2026 22:42:36 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/10515.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 11 Feb 2003 15:02:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Fehler beim Einbinden von Pascal-Units on Tue, 11 Feb 2003 15:02:00 GMT]]></title><description><![CDATA[<p>Bekomme seit neustem immer Fehlermeldungen, wenn ich versuche, Pascal-Units direkt ins Projekt einzubinden.<br />
Bis heute morgen hat's einwandfrei fuktioniert, doch jetzt klappt's nicht mehr.</p>
<p>Es kommen bisher folgende Fehlermeldungen:<br />
[Pascal Fehler] sysutils.pas(4389): Datei nicht gefunden: 'FFMT.OBJ'<br />
[Pascal Fehler] sysutils.pas(1373): Ungenügende Forward- oder External-Deklaration: 'FloatToText'<br />
[Pascal Fehler] sysutils.pas(1492): Ungenügende Forward- oder External-Deklaration: 'FloatToTextFmt'<br />
[Pascal Fehler] sysutils.pas(1519): Ungenügende Forward- oder External-Deklaration: 'TextToFloat'<br />
[Pascal Fehler] sysutils.pas(1551): Ungenügende Forward- oder External-Deklaration: 'FloatToDecimal'<br />
[Pascal Fataler Fehler] hh.pas(39): Verwendete Unit 'SysUtils.pas' kann nicht compiliert werden</p>
<p>Die entsprechenden Zeilen lauten:</p>
<pre><code class="language-cpp">{$L FFMT.OBJ}

procedure FloatToDecimal(var Result: TFloatRec; const Value;
  ValueType: TFloatValue; Precision, Decimals: Integer); external;

function FloatToText(Buffer: PChar; const Value; ValueType: TFloatValue;
  Format: TFloatFormat; Precision, Digits: Integer): Integer; external;

function FloatToTextFmt(Buffer: PChar; const Value; ValueType: TFloatValue;
  Format: PChar): Integer; external;

function TextToFloat(Buffer: PChar; var Value;
  ValueType: TFloatValue): Boolean; external;

function FloatToStr(Value: Extended): string;
var
  Buffer: array[0..63] of Char;
begin
  SetString(Result, Buffer, FloatToText(Buffer, Value, fvExtended,
    ffGeneral, 15, 0));
end;
</code></pre>
<p>und</p>
<pre><code class="language-cpp">{*******************************************************}
{                                                       }
{       HTML Help API Interface Unit                    }
{                                                       }
{       Copyright (c) 1999 The Helpware Group           }
{                                                       }
{*******************************************************}

{
========================================================
  hh.pas
  Version: 1.6
  HTML Help API Unit

  htmlhelp.h ported to The Helpware Group
  Copyright (c) 1999 The Helpware Group
  Email: support@helpware.net
  Web: http://www.helpware.net 
  Platform: Delphi 2, 3, 4, 5, ...

  Notes:
    htmlhelp.h is distributed with HH Workshop.
    A free download from
    http://msdn.microsoft.com/library/tools/htmlhelp/chm/HH1Start.htm 

    The name hh.pas was used instead of htmlhelp.pas
    to avoid a name clash with API function htmlhelp()

  Changes Notes: See hh_doc.txt
========================================================
}

unit hh;

interface

uses
  Windows,   //This line will not compile under Delphi 1 -- D1 is not supported
  SysUtils,
  Registry;
...
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/54730</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/54730</guid><dc:creator><![CDATA[JeGr]]></dc:creator><pubDate>Tue, 11 Feb 2003 15:02:00 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler beim Einbinden von Pascal-Units on Tue, 11 Feb 2003 15:46:00 GMT]]></title><description><![CDATA[<p>Bei mir hat es irgendwie total die Include-Verzeichnisse in den Projektoptionen durcheinandergewürfelt.<br />
Habe da jetzt mal wieder für Ordnung gesorgt und siehe da - es funktioniert wieder.<br />
Allerdings sind mir diese Änderungen schleierhaft, da ich (bewusst) nichts in den Optionen geändert habe...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/54731</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/54731</guid><dc:creator><![CDATA[JeGr]]></dc:creator><pubDate>Tue, 11 Feb 2003 15:46:00 GMT</pubDate></item><item><title><![CDATA[Reply to Fehler beim Einbinden von Pascal-Units on Thu, 14 Sep 2006 08:12:13 GMT]]></title><description><![CDATA[<p>Hi,<br />
will gerade ein älteres Projekt compilieren und bekomme den gleichen Fehler.<br />
Welche Einstellungen muss ich ändern, damit das Projekt wieder läuft?<br />
Habe im Netz viel von der TASM32 gelesen, die FFMT.ASM zur FFMT.OBJ aasemblieren kann, nur leider kennt und hat keiner diese Datei??<br />
MfG<br />
Frank</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1137052</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1137052</guid><dc:creator><![CDATA[fiba]]></dc:creator><pubDate>Thu, 14 Sep 2006 08:12:13 GMT</pubDate></item></channel></rss>