/******************************************************************************* ; ; MODULE AttoZ.h ; ; DESCRIPTION ATTO header file for code decompression with zlib. ; ; ; THIS PROGRAM AND THE INFORMATION CONTAINED HEREIN IS THE PROPERTY OF ; ATTO TECHNOLOGY, INC. AND SHALL NOT BE REPRODUCED, COPIED, OR USED IN ; WHOLE OR IN PART OTHER THAN AS PROVIDED FOR IN THE LICENSE AGREEMENT ; PURSUANT TO WHICH IT WAS FURNISHED. ; ; COPYRIGHT (c) ATTO TECHNOLOGY, INC. 2005-2006 ; ALL RIGHTS RESERVED. ; ; *******************************************************************************/ /* #defines which affect #include */ #ifndef __ATTOZ_H__ #define __ATTOZ_H__ /* #include section */ /* externs section */ /* globals section */ ASTAT AttoZInflate (PVOID pDst, DWORD *pdwDstLen, PVOID pSrc, DWORD dwSrcLen); ASTAT AttoZCompress(PVOID pDst, DWORD *pdwDstLen, PVOID pSrc, DWORD dwSrcLen); /* typedef section */ /* local structs & unions section */ /* local (static) function prototypes section */ /* enums & #defines */ #endif /* __ATTOZ_H__ */