Skip to content

Commit

Permalink
method_info: add access flag definitions
Browse files Browse the repository at this point in the history
Signed-off-by: Vegard Nossum <[email protected]>
  • Loading branch information
vegard committed May 18, 2009
1 parent 5ff6c63 commit b2eb62c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions include/cafebabe/method_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@
struct cafebabe_attribute_info;
struct cafebabe_stream;

#define CAFEBABE_METHOD_ACC_PUBLIC 0x0001
#define CAFEBABE_METHOD_ACC_PRIVATE 0x0002
#define CAFEBABE_METHOD_ACC_PROTECTED 0x0004
#define CAFEBABE_METHOD_ACC_STATIC 0x0008
#define CAFEBABE_METHOD_ACC_FINAL 0x0010
#define CAFEBABE_METHOD_ACC_SYNCHRONIZED 0x0020
#define CAFEBABE_METHOD_ACC_NATIVE 0x0100
#define CAFEBABE_METHOD_ACC_ABSTRACT 0x0400
#define CAFEBABE_METHOD_ACC_STRICT 0x0800

/**
* A java class method.
*
Expand Down

0 comments on commit b2eb62c

Please sign in to comment.