1 /*
2  * This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
3  * It is copyright by its individual contributors, as recorded in the
4  * project's Git history.  See COPYING.txt at the top level for license
5  * terms and a link to the Git history.
6  */
7 /*
8  *
9  * INTERNAL header - not to be included outside of libmve
10  *
11  */
12 
13 #pragma once
14 
15 #ifdef __cplusplus
16 
17 extern int g_width, g_height;
18 extern unsigned char *g_vBackBuf1, *g_vBackBuf2;
19 
20 void decodeFrame8(unsigned char *pFrame, const unsigned char *pMap, int mapRemain, const unsigned char *pData, int dataRemain);
21 void decodeFrame16(unsigned char *pFrame, const unsigned char *pMap, int mapRemain, const unsigned char *pData, int dataRemain);
22 
23 #endif
24