2018-04-28 11:30:53 -04:00
|
|
|
#ifndef DGL_DGLPCX_H_INCLUDED
|
|
|
|
#define DGL_DGLPCX_H_INCLUDED
|
2017-11-26 13:18:33 -05:00
|
|
|
|
2018-04-28 11:30:53 -04:00
|
|
|
#include "dglcmn.h"
|
|
|
|
#include "dglgfx.h"
|
2017-11-26 13:18:33 -05:00
|
|
|
|
|
|
|
SURFACE* pcx_load(const char *filename, byte *pcx_palette);
|
|
|
|
boolean pcx_save(const char *filename, const SURFACE *src, const byte *palette);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|