home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / somdtype.idl < prev    next >
Encoding:
Text File  |  1996-02-21  |  1.2 KB  |  60 lines

  1. //
  2. //   COMPONENT_NAME: somd
  3. //
  4. //   ORIGINS: 27
  5. //
  6. //
  7. //   10H9767, 10H9769  (C) COPYRIGHT International Business Machines Corp. 1992,1994
  8. //   All Rights Reserved
  9. //   Licensed Materials - Property of IBM
  10. //   US Government Users Restricted Rights - Use, duplication or
  11. //   disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  12. //
  13.  
  14. //
  15. //  somdtype.idl - global DSOM type definitions
  16. // 
  17.  
  18.  
  19. #ifndef somdtype_idl
  20. #define somdtype_idl
  21. #include <containd.idl>                                    //d5959
  22.  
  23. // typedef string RepositoryId;                              d5959
  24.  
  25. //typedef string Identifier;                                 d5959
  26.  
  27. // exception definitions                // in somcorba.h
  28. enum completion_status { YES, NO, MAYBE };
  29.  
  30. #ifdef EMIT_SOMDTYPES
  31. #pragma somemittypes on
  32. #endif
  33.  
  34.  typedef unsigned long ORBStatus;
  35.  
  36.  typedef sequence <octet,1024> ReferenceData;
  37.  
  38.  typedef unsigned long Flags;
  39.  
  40.  struct NamedValue {    
  41.     Identifier name;
  42.     any        argument;
  43.     long       len;
  44.     Flags      arg_modes;
  45.  };
  46.  
  47.  typedef string ImplId;
  48.  
  49. #ifdef EMIT_SOMDTYPES
  50. #pragma somemittypes off
  51. #endif
  52.  
  53.  
  54.  
  55. module SOMD { 
  56.   const string SOMDVersion = "2.1";
  57. };
  58.  
  59. #endif /* somdtype_idl */
  60.