aboutsummaryrefslogtreecommitdiff
path: root/gob/pack.h
blob: 11929834fe0ab7189bc7a7e9327703a017cd45ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
** Gobliiins 1
** Original game by CoktelVision
**
** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
**
*/
#ifndef __UNPACKER_H
#define __UNPACKER_H

namespace Gob {

int32 asm_unpackData(char *source, char *dest, char *temp);
int32 unpackData(char *source, char *dest);

}				// End of namespace Gob

#endif