Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
aplib.h
Package: PEPack.rar [view]
Upload User: sdguojin
Upload Date: 2022-07-31
Package Size: 1726k
Code Size: 2k
Category:
Windows Kernel
Development Platform:
Visual C++
- /*
- * aPLib compression library - the smaller the better :)
- *
- * MS COFF format header file
- *
- * Copyright (c) 1998-2008 by Joergen Ibsen / Jibz
- * All Rights Reserved
- *
- * http://www.ibsensoftware.com/
- */
- #ifndef APLIB_H_INCLUDED
- #define APLIB_H_INCLUDED
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifndef APLIB_ERROR
- # define APLIB_ERROR (-1)
- #endif
- unsigned int __cdecl aP_pack(const void *source,
- void *destination,
- unsigned int length,
- void *workmem,
- int (__cdecl *callback)(unsigned int, unsigned int, unsigned int, void *),
- void *cbparam);
- unsigned int __cdecl aP_workmem_size(unsigned int inputsize);
- unsigned int __cdecl aP_max_packed_size(unsigned int inputsize);
- unsigned int __cdecl aP_depack_asm(const void *source, void *destination);
- unsigned int __cdecl aP_depack_asm_fast(const void *source, void *destination);
- unsigned int __cdecl aP_depack_asm_safe(const void *source,
- unsigned int srclen,
- void *destination,
- unsigned int dstlen);
- unsigned int __cdecl aP_crc32(const void *source, unsigned int length);
- unsigned int __cdecl aPsafe_pack(const void *source,
- void *destination,
- unsigned int length,
- void *workmem,
- int (__cdecl *callback)(unsigned int, unsigned int, unsigned int, void *),
- void *cbparam);
- unsigned int __cdecl aPsafe_check(const void *source);
- unsigned int __cdecl aPsafe_get_orig_size(const void *source);
- unsigned int __cdecl aPsafe_depack(const void *source,
- unsigned int srclen,
- void *destination,
- unsigned int dstlen);
- #ifdef __cplusplus
- } /* extern "C" */
- #endif
- #endif /* APLIB_H_INCLUDED */