mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
19 lines
317 B
C
19 lines
317 B
C
|
/*
|
||
|
** 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
|