git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4415 626c5289-ae23-0410-ae9c-e8d60b6d4f22
15 lines
154 B
OpenEdge ABL
15 lines
154 B
OpenEdge ABL
%module anonymous_bitfield
|
|
|
|
%inline %{
|
|
|
|
struct Foo {
|
|
int x : 4;
|
|
int y : 4;
|
|
int : 2;
|
|
int f : 1;
|
|
unsigned int : 5;
|
|
int z : 15;
|
|
};
|
|
|
|
%}
|
|
|