blob: 64ef31c26b4dd86ca02f33d6277febef3fb401ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// $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;
};
};
#pragma prefix ""
|