1 /*
2  * Copyright (c) 2001, Oracle and/or its affiliates. All rights reserved.
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * This code is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 only, as
7  * published by the Free Software Foundation.
8  *
9  * This code is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * version 2 for more details (a copy is included in the LICENSE file that
13  * accompanied this code).
14  *
15  * You should have received a copy of the GNU General Public License version
16  * 2 along with this work; if not, write to the Free Software Foundation,
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  *
23  */
24 
25 package sun.jvm.hotspot.debugger.win32.coff;
26 
27 /** Type enumeration for subsections in Visual C++ 5.0 debug
28     information. */
29 
30 public interface DebugVC50SubsectionTypes {
31   public static final short SST_MODULE        = (short) 0x120;
32   public static final short SST_TYPES         = (short) 0x121;
33   public static final short SST_PUBLIC        = (short) 0x122;
34   public static final short SST_PUBLIC_SYM    = (short) 0x123;
35   public static final short SST_SYMBOLS       = (short) 0x124;
36   public static final short SST_ALIGN_SYM     = (short) 0x125;
37   public static final short SST_SRC_LN_SEG    = (short) 0x126;
38   public static final short SST_SRC_MODULE    = (short) 0x127;
39   public static final short SST_LIBRARIES     = (short) 0x128;
40   public static final short SST_GLOBAL_SYM    = (short) 0x129;
41   public static final short SST_GLOBAL_PUB    = (short) 0x12a;
42   public static final short SST_GLOBAL_TYPES  = (short) 0x12b;
43   public static final short SST_MPC           = (short) 0x12c;
44   public static final short SST_SEG_MAP       = (short) 0x12d;
45   public static final short SST_SEG_NAME      = (short) 0x12e;
46   public static final short SST_PRE_COMP      = (short) 0x12f;
47   public static final short SST_UNUSED        = (short) 0x130;
48   public static final short SST_OFFSET_MAP_16 = (short) 0x131;
49   public static final short SST_OFFSET_MAP_32 = (short) 0x132;
50   public static final short SST_FILE_INDEX    = (short) 0x133;
51   public static final short SST_STATIC_SYM    = (short) 0x134;
52 }
53