msgintf.pp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 2003 by the Free Pascal development team
  5. Debugclient/server interface definition.
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. unit msgintf;
  13. interface
  14. Type
  15. TDebugConnection = (dcUnix,dcInet);
  16. Const
  17. DebugSocket : String = '/tmp/debugserver';
  18. DebugHostName : String = 'localhost';
  19. DebugPort : Word = 4321;
  20. DebugConnection : TDebugConnection = dcunix;
  21. lctStop = -1;
  22. lctInformation = 0;
  23. lctWarning = 1;
  24. lctError = 2;
  25. lctIdentify = 3;
  26. Type
  27. TDebugMessage = Record
  28. MsgType : Integer;
  29. MsgTimeStamp : TDateTime;
  30. Msg : String;
  31. end;
  32. implementation
  33. end.
  34. {
  35. $Log$
  36. Revision 1.1 2003-01-02 14:44:29 michael
  37. + Initial implementation
  38. }