blob: a26ed5325bb1a29e8d9ca99cd6a76ea91ff7fcba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// $Id$
#pragma prefix "omg.org"
module CONV_FRAME {
typedef unsigned long CodeSetId;
struct CodeSetComponent {
CodeSetId native_code_set;
sequence<CodeSetId> conversion_code_sets;
};
struct CodeSetComponentInfo {
CodeSetComponent ForCharData;
CodeSetComponent ForWcharData;
};
struct CodeSetContext {
CodeSetId char_data;
CodeSetId wchar_data;
};
};
|