// File: CONV_FRAME.idl // From CORBA 3.0: Chapter 13, Interoperability Architecture #ifndef _CONV_FRAME_IDL #define _CONV_FRAME_IDL #if ! defined(CORBA_E_COMPACT) && ! defined (CORBA_E_MICRO) #ifdef _PRE_3_0_COMPILER_ #pragma prefix "omg.org" #endif module CONV_FRAME { #ifndef _PRE_3_0_COMPILER_ typeprefix CONV_FRAME "omg.org"; #endif typedef unsigned long CodeSetId; struct CodeSetComponent { CodeSetId native_code_set; sequence conversion_code_sets; }; struct CodeSetComponentInfo { CodeSetComponent ForCharData; CodeSetComponent ForWcharData; }; // CodeSet Service Context information struct CodeSetContext { CodeSetId char_data; CodeSetId wchar_data; }; }; #endif // if ! defined(CORBA_E_COMPACT) && ! defined (CORBA_E_MICRO) #endif // _CONV_FRAME_IDL