home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161b.iso / full / delphi / INSTALL / data.z / REGCONST.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-08-05  |  981 b   |  27 lines

  1. unit regconst;
  2.  
  3. interface
  4.  
  5. resourcestring
  6.   SAbout = 'Turbo Register Server -- Borland ActiveX Server Registration utility.' +
  7.     #13#10'Version 1.0.  Copyright (c) 1997 Borland International'#13#10;
  8.   SUsage = 'Syntax: TREGSVR [options] filename'#13#10 +
  9.     '  -u  =  Unregister server or type library'#13#10 +
  10.     '  -q  =  Quiet (silent) operation'#13#10 +
  11.     '  -t  =  Register type library'#13#10;
  12.   SFileNotFound = 'File "%s" not found';
  13.   SCantFindProc = '%s procedure not found in "%s"';
  14.   SRegFail = 'Call to %s failed in "%s"';
  15.   SLoadFail = 'Failed to load "%s"';
  16.   SRegSuccessful = 'Call to %s was successful!';
  17.   SRegStr = 'registered';
  18.   SUnregStr = 'unregistered';
  19.   STlbName = 'Type library name: %s';
  20.   STlbGuid = 'Type library GUID: %s';
  21.   STlbRegSuccessful = 'Type library successfully %s!';
  22.   SCantUnregTlb = 'The version of OLEAUT32.DLL on this machine does not ' +
  23.     'support type library unregistration.';
  24.  
  25. implementation
  26.  
  27. end.