depack.h
来自「一些初级的网络编程」· C头文件 代码 · 共 31 行
H
31 行
/*
* aPLib compression library - the smaller the better :)
*
* C depacker, header file
*
* Copyright (c) 1998-2004 by Joergen Ibsen / Jibz
* All Rights Reserved
*
* http://www.ibsensoftware.com/
*/
#ifndef DEPACK_H_INCLUDED
#define DEPACK_H_INCLUDED
#ifdef __cplusplus
extern "C" {
#endif
#ifndef APLIB_ERROR
# define APLIB_ERROR (-1)
#endif
/* function prototype */
unsigned int aP_depack(const void *source, void *destination);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* DEPACK_H_INCLUDED */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?