1/*****************************************************************************\
2 Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
3 This file is licensed under the Snes9x License.
4 For further information, consult the LICENSE file in the root directory.
5\*****************************************************************************/
6
7// JMA compressed file support
8// (c) Copyright 2004-2006 NSRT Team (http://nsrt.edgeemu.com)
9
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14size_t load_jma_file(const char *filename, unsigned char *buffer);
15#ifdef __cplusplus
16}
17#endif
18