DEADSOFTWARE

Patched for Linux
[mp3cc.git] / MPC.3.5.LINUX / preverifier / signature.h
1 /*
2 * @(#)signature.h 1.2 02/09/27
3 *
4 * Copyright 1995-1998 by Sun Microsystems, Inc.,
5 * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
6 * All rights reserved.
7 *
8 * This software is the confidential and proprietary information
9 * of Sun Microsystems, Inc. ("Confidential Information"). You
10 * shall not disclose such Confidential Information and shall use
11 * it only in accordance with the terms of the license agreement
12 * you entered into with Sun.
13 * Use is subject to license terms.
14 */
16 /*
17 * The keyletters used in type signatures
18 */
20 #ifndef _SIGNATURE_H_
21 #define _SIGNATURE_H_
23 #define SIGNATURE_ANY 'A'
24 #define SIGNATURE_ARRAY '['
25 #define SIGNATURE_BYTE 'B'
26 #define SIGNATURE_CHAR 'C'
27 #define SIGNATURE_CLASS 'L'
28 #define SIGNATURE_ENDCLASS ';'
29 #define SIGNATURE_ENUM 'E'
30 #define SIGNATURE_FLOAT 'F'
31 #define SIGNATURE_DOUBLE 'D'
32 #define SIGNATURE_FUNC '('
33 #define SIGNATURE_ENDFUNC ')'
34 #define SIGNATURE_INT 'I'
35 #define SIGNATURE_LONG 'J'
36 #define SIGNATURE_SHORT 'S'
37 #define SIGNATURE_VOID 'V'
38 #define SIGNATURE_BOOLEAN 'Z'
40 #define SIGNATURE_ANY_STRING "A"
41 #define SIGNATURE_ARRAY_STRING "["
42 #define SIGNATURE_BYTE_STRING "B"
43 #define SIGNATURE_CHAR_STRING "C"
44 #define SIGNATURE_CLASS_STRING "L"
45 #define SIGNATURE_ENDCLASS_STRING ";"
46 #define SIGNATURE_ENUM_STRING "E"
47 #define SIGNATURE_FLOAT_STRING "F"
48 #define SIGNATURE_DOUBLE_STRING "D"
49 #define SIGNATURE_FUNC_STRING "("
50 #define SIGNATURE_ENDFUNC_STRING ")"
51 #define SIGNATURE_INT_STRING "I"
52 #define SIGNATURE_LONG_STRING "J"
53 #define SIGNATURE_SHORT_STRING "S"
54 #define SIGNATURE_VOID_STRING "V"
55 #define SIGNATURE_BOOLEAN_STRING "Z"
59 #endif /* !_SIGNATURE_H_ */