jar.h
来自「基于LWVCL开发的库」· C头文件 代码 · 共 40 行
H
40 行
/* * jar.h * Handle JAR input files. * * Copyright (c) 2000, 2001, 2002 The University of Utah and the Flux Group. * All rights reserved. * * * Copyright (c) 2008 * Dalibor Topic <robilad@kaffe.org> * * This file is licensed under the terms of the GNU Public License. * See the file "license.terms" for restrictions on redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. */#ifndef __jar_h#define __jar_h#include <zzip/zzip.h>/* * Read in and, if necessary, decompress the contents of a file stored in a * JAR file. * * @param je file to load from the JAR file. * @return contents of the file or NULL if there was an error. */void *getDataJarFile(ZZIP_FILE *je);/** * Get the uncompressed size of a JAR file entry. * * @param je JAR file entry * @return its uncompresses length in bytes, or -1 in case of an error. */zzip_ssize_t getUncompressedSize(ZZIP_FILE * je);#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?