Browse Source

+ Moved internal msgintf unit to implementation

git-svn-id: trunk@1325 -
michael 20 years ago
parent
commit
ace6f8510a
1 changed files with 2 additions and 3 deletions
  1. 2 3
      fcl/inc/dbugintf.pp

+ 2 - 3
fcl/inc/dbugintf.pp

@@ -21,7 +21,6 @@ interface
 
 uses
    simpleipc,
-   msgintf,
    classes;
 
 Type
@@ -40,7 +39,6 @@ procedure SendDebugFmtEx(const Msg: string; const Args: array of const; MType: T
 
 { low-level routines }
 
-Procedure SendDebugMessage(Const Msg : TDebugMessage);
 Function  StartDebugServer : integer;
 Procedure InitDebugClient;
 
@@ -55,7 +53,7 @@ ResourceString
 
 implementation
 
-Uses SysUtils,process;
+Uses SysUtils, msgintf, process;
 
 Const
   DmtInformation = lctInformation;
@@ -68,6 +66,7 @@ var
   DebugClient : TSimpleIPCClient = nil;
   MsgBuffer : TMemoryStream = Nil;
   ServerID : Integer;
+
   
 Procedure WriteMessage(Const Msg : TDebugMessage);