📄 classpath.h
字号:
/* * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -