home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Source / Rtl / Corba / CORBCNST.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-08-11  |  1.6 KB  |  36 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Borland Delphi Runtime Library                  }
  5. {                                                       }
  6. {       Copyright (C) 1999 Inprise Corporation          }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit CorbCnst;
  11.  
  12. interface
  13.  
  14. resourcestring
  15.   SCorbaDllNotLoaded = 'Unable to load CORBA libraries';
  16.   SCorbaNotInitialized = 'CORBA libraries are unavailable or not initialized';
  17.   SCorbaSkeletonNotRegistered = 'CORBA server skeleton not registered for object %s';
  18.   SCorbaStubNotRegistered = 'CORBA client stub not registered';
  19.   SCorbaInterfaceIDNotRegister = 'CORBA interface not registered';
  20.   SCorbaRepositoryIDNotRegistered = 'CORBA Repository ID "%s" not registered';
  21.   SCorbaIncompleteFactory = 'CORBA Factory did not implement CreateInterface';
  22.  
  23. resourcestring
  24.   sInvalidTypeCast = 'Variant cannot be converted to a CORBA Any';
  25.   sNotCorbaObject = 'Variant/Any not a CORBA object';
  26.   sParamTypeCast = 'Parameter (%d) of method %s not of the correct type';
  27.   sParamOut = 'Parameter (%d) of method %s is an out or in/out parameter and requires a variable reference';
  28.   sNoRepository = 'Could not perform CORBA Dispatch, no interface repository found';
  29.   sInvalidParameterCount = 'Incorrect number of parameters to method %s';
  30.   sMethodNotFound = 'Method %s not found';
  31.   sConnecting = 'Connecting to CORBA server...';
  32.  
  33. implementation
  34.  
  35. end.
  36.