classpath.h

来自「基于LWVCL开发的库」· C头文件 代码 · 共 36 行

H
36
字号
/* * 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#include <zzip/zzip.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 {                ZZIP_DIR*        jar;                struct {                        int     loaded;                } sof;        } u;        struct _classpathEntry* next;} classpathEntry;extern classpathEntry* classpath;#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?