git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6286 626c5289-ae23-0410-ae9c-e8d60b6d4f22
17 lines
232 B
OpenEdge ABL
17 lines
232 B
OpenEdge ABL
%module anonymous_bitfield
|
|
|
|
%inline %{
|
|
|
|
struct Foo {
|
|
int x : 4;
|
|
int y : 4;
|
|
int : 2;
|
|
unsigned int f : 1;
|
|
unsigned int : 5;
|
|
int z : 15;
|
|
unsigned int : 8+6;
|
|
unsigned seq : (sizeof(unsigned)*8 - 6);
|
|
};
|
|
|
|
%}
|
|
|