scktcnst.pas

来自「这是不可多得的源代码」· PAS 代码 · 共 44 行

PAS
44
字号

{*******************************************************}
{                                                       }
{       Borland Delphi Visual Component Library         }
{                                                       }
{       Copyright (c) 1997,99 Inprise Corporation       }
{                                                       }
{*******************************************************}

unit ScktCnst;

interface

const
  //Do not localize
  KEY_SOCKETSERVER  = '\SOFTWARE\Borland\Socket Server';
  KEY_IE            = 'SOFTWARE\Microsoft\Internet Explorer';
  csSettings        = 'Settings';
  ckPort            = 'Port';
  ckThreadCacheSize = 'ThreadCacheSize';
  ckInterceptGUID   = 'InterceptGUID';
  ckShowHost        = 'ShowHost';
  ckTimeout         = 'Timeout';
  ckRegistered      = 'RegisteredOnly';
  SServiceName      = 'SocketServer';
  SApplicationName  = 'Borland Socket Server';

resourcestring
  SServiceOnly = 'The Socket Server can only be run as a service on NT 3.51 and prior';
  SErrClose = 'Cannot exit when there are active connections. Kill connections?';
  SErrChangeSettings = 'Cannot change settings when there are active connections. Kill connections?';
  SQueryDisconnect = 'Disconnecting clients can cause application errors. Continue?';
  SOpenError = 'Error opening port %d with error: %s';
  SHostUnknown = '(Unknown)';
  SNotShown = '(Not Shown)';
  SNoWinSock2 = 'WinSock 2 must be installed to use the socket connection';
  SStatusline = '%d current connections';
  SAlreadyRunning = 'The Socket Server is already running';
  SNotUntilRestart = 'This change will not take affect until the Socket Server is restarted';

implementation

end.
 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?