www.pudn.com > Roulette.rar > ScktCnst.pas


 
{*******************************************************} 
{                                                       } 
{       Borland Delphi Visual Component Library         } 
{                                                       } 
{       Copyright (c) 1997,99 Inprise Corporation       } 
{                                                       } 
{*******************************************************} 
 
unit ScktCnst; 
 
interface 
 
const 
  //Do not localize 
  KEY_SOCKETSERVER  = '\SOFTWARE\NULLSOFT\RltServer'; 
  KEY_IE            = 'SOFTWARE\Microsoft\Internet Explorer'; 
  csSettings        = 'Settings'; 
  ckPort            = 'Port'; 
  ckThreadCacheSize = 'ThreadCacheSize'; 
  ckInterceptGUID   = 'InterceptGUID'; 
  ckShowHost        = 'ShowHost'; 
  ckTimeout         = 'Timeout'; 
  ckRegistered      = 'RegisteredOnly'; 
  SServiceName      = 'RltServer'; 
  SApplicationName  = 'RltServer'; 
 
  ckSN                = 'SN'; 
 
resourcestring 
  SServiceOnly = 'The Socket Server can only be run as a service on NT 3.51 and prior'; 
  SErrClose = '是否断开已连接的游戏终端,并退出?'; 
  SErrChangeSettings = '在已连接终端时改变配置将断开终端,是否继续?'; 
  SQueryDisconnect = 'Disconnecting clients can cause application errors. Continue?'; 
  SOpenError = 'Error opening port %d with error: %s'; 
  SHostUnknown = '(未知)'; 
  SNotShown = '(未显示)'; 
  SNoWinSock2 = 'WinSock 2 must be installed to use the socket connection'; 
  SStatusline = '%d 已连接'; 
  SAlreadyRunning = '游戏服务程序已经运行。'; 
  SNotUntilRestart = '修改了的配置在服务重启后生效。'; 
 
implementation 
 
end.