mirror of https://github.com/mono/CppSharp.git
c-sharpdotnetmonobindingsbridgecclangcpluspluscppsharpglueinteropparserparsingpinvokeswigsyntax-treevisitorsxamarinxamarin-bindings
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
361 B
28 lines
361 B
enum FlagEnum |
|
{ |
|
A = 1 << 0, |
|
B = 1 << 1, |
|
C = 1 << 2, |
|
D = 1 << 3, |
|
}; |
|
|
|
enum FlagEnum2 |
|
{ |
|
A = 1 << 0, |
|
B = 1 << 1, |
|
C = 1 << 2, |
|
D = 1 << 4, |
|
}; |
|
|
|
class C { }; |
|
void DoSomethingC(C*, int); |
|
|
|
struct TestRename |
|
{ |
|
int lowerCaseMethod(); |
|
int lowerCaseField; |
|
}; |
|
|
|
#define TEST_ENUM_ITEM_NAME_0 0 |
|
#define TEST_ENUM_ITEM_NAME_1 1 |
|
#define TEST_ENUM_ITEM_NAME_2 2 |