comparison tools/lib64gfx.h @ 2324:dc79c64f158c

Constify.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 03 Sep 2019 11:54:06 +0300
parents f367677a5b21
children ddd29161d258
comparison
equal deleted inserted replaced
2323:f367677a5b21 2324:dc79c64f158c
386 DMC64Image *dmC64ImageAlloc(const DMC64ImageFormat *fmt); 386 DMC64Image *dmC64ImageAlloc(const DMC64ImageFormat *fmt);
387 void dmC64ImageFree(DMC64Image *img); 387 void dmC64ImageFree(DMC64Image *img);
388 388
389 389
390 // Encoding and decoding of formats and images 390 // Encoding and decoding of formats and images
391 int dmC64ConvertCSDataToImage(DMImage *img, int xoffs, int yoffs, const Uint8 *inBuf, int width, int height, BOOL multicolor, int *colors); 391 int dmC64ConvertCSDataToImage(DMImage *img,
392 const int xoffs, const int yoffs, const Uint8 *buf,
393 const int width, const int height, const BOOL multicolor,
394 const int *colors);
392 395
393 int dmC64ImageGetNumBlocks(const DMC64ImageFormat *fmt); 396 int dmC64ImageGetNumBlocks(const DMC64ImageFormat *fmt);
394 397
395 const char *dmC64GetOpSubjectName(const int subject); 398 const char *dmC64GetOpSubjectName(const int subject);
396 const DMC64MemBlock * dmC64GetOpMemBlock(const DMC64Image *img, const int subject, const int bank); 399 const DMC64MemBlock * dmC64GetOpMemBlock(const DMC64Image *img, const int subject, const int bank);