| /* consts.h */ | |
| /* | |
| Java Decompiler | |
| Copyright (c) 1994-2003, Pete Ryland. | |
| Distributed under the GNU GPL Version 2. | |
| This package is available from http://pdr.cx/hbd/ | |
| */ | |
| #ifndef CONSTS_H | |
| #define CONSTS_H | |
| /* These are the tags that the constant pool uses. */ | |
| enum { | |
| CONSTANT_Utf8 = 1, | |
| CONSTANT_Unicode, /* unused */ | |
| CONSTANT_Integer, | |
| CONSTANT_Float, | |
| CONSTANT_Long, | |
| CONSTANT_Double, | |
| CONSTANT_Class, | |
| CONSTANT_String, | |
| CONSTANT_Fieldref, | |
| CONSTANT_Methodref, | |
| CONSTANT_InterfaceMethodref, | |
| CONSTANT_NameAndType | |
| }; | |
| #endif |