classpath.h
来自「kaffe Java 解释器语言,源码,Java的子集系统,开放源代码」· C头文件 代码 · 共 34 行
H
34 行
/* * classpath.h * * Copyright (c) 1996, 1997, 1998, 1999 * Transvirtual Technologies, Inc. All rights reserved. * * See the file "license.terms" for information on usage and redistribution * of this file. */#ifndef __classpath_h#define __classpath_h#define IS_ZIP(B) \ ((B)[0] == 'P' && (B)[1] == 'K')#define IS_SOFILE(B) \ ((B)[0] == 0x7f && (B)[1] == 'E' && (B)[2] == 'L' && (B)[3] == 'F')typedef struct _classpathEntry { int type; char* path; union { jarFile* jar; struct { int loaded; } sof; } u; struct _classpathEntry* next;} classpathEntry;extern classpathEntry* classpath;#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?