⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inflate.h

📁 This is a java virtual machine implement in c
💻 H
字号:
/*0001*//*
/*0002./ * Copyright (c) 1999-2001 Sun Microsystems, Inc. All Rights Reserved.
/*0003./ *
/*0004./ * This software is the confidential and proprietary information of Sun
/*0005./ * Microsystems, Inc. ("Confidential Information").  You shall not
/*0006./ * disclose such Confidential Information and shall use it only in
/*0007./ * accordance with the terms of the license agreement you entered into
/*0008./ * with Sun.
/*0009./ *
/*0010./ * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
/*0011./ * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
/*0012./ * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
/*0013./ * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
/*0014./ * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
/*0015./ * THIS SOFTWARE OR ITS DERIVATIVES.
/*0016./ *
/*0017./ */
/*0018*/
/*0019*//*=========================================================================
/*0020./ * SYSTEM:    KVM
/*0021./ * SUBSYSTEM: JAR file reader / inflater.
/*0022./ * FILE:      inflate.h
/*0023./ * OVERVIEW:  Public header file for the JAR inflater module. 
/*0024./ * AUTHOR:    Tasneem Sayeed, Frank Yellin
/*0025./ *=======================================================================*/
/*0026*/
/*0027*/#ifndef _INFLATE_H_
/*0028*/#define _INFLATE_H_
/*0029*/
/*0030*//*=========================================================================
/*0031./ * Forward declarations for JAR file reader
/*0032./ *=======================================================================*/
/*0033*/
/*0034*/typedef int    (*JarGetByteFunctionType)(void *);
/*0035*/
/*0036*/bool_t inflate(void *data, JarGetByteFunctionType, int compLen, 
/*0037*/               UNSIGNED_CHAR_HANDLE outFileH, int decompLen);
/*0038*/
/*0039*//* Any caller to inflate must ensure that it is safe to read at least
/*0040./ * this many bytes beyond compData + compLen
/*0041./ */
/*0042*/#define INFLATER_EXTRA_BYTES 4
/*0043*/
/*0044*/#endif /* _INFLATE_H_ */
/*0045*/
/*0046*/

⌨️ 快捷键说明

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