mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
17 lines
454 B
C
17 lines
454 B
C
|
/*
|
||
|
*
|
||
|
* INTERNAL header - not to be included outside of libmve
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef _DECODERS_H
|
||
|
#define _DECODERS_H
|
||
|
|
||
|
extern int g_width, g_height;
|
||
|
extern void *g_vBackBuf1, *g_vBackBuf2;
|
||
|
|
||
|
extern void decodeFrame8(unsigned char *pFrame, unsigned char *pMap, int mapRemain, unsigned char *pData, int dataRemain);
|
||
|
extern void decodeFrame16(unsigned char *pFrame, unsigned char *pMap, int mapRemain, unsigned char *pData, int dataRemain);
|
||
|
|
||
|
#endif // _DECODERS_H
|