7 lines
120 B
C
7 lines
120 B
C
|
#ifndef LZH_H
|
||
|
#define LZH_H
|
||
|
|
||
|
int LzUnpack(void *pSrc, int srcSize, void *pDst, int dstSize);
|
||
|
|
||
|
#endif /* ifndef LZH_H */
|