Save and load Image mode in GIF file.

Add the extension GFX2MODE
This commit is contained in:
Thomas Bernard
2018-12-10 23:40:33 +01:00
parent c81ffb0d6e
commit c5a52242be
3 changed files with 95 additions and 1 deletions

View File

@@ -24,6 +24,20 @@
#include "loadsave.h"
/**
* identifier for each Image mode
*
* @return an ASCII label for the mode
*/
const char * Constraint_mode_label(enum IMAGE_MODES mode);
/**
* Search constraint mode for a label
*
* @return -1 for unknown mode or one of ::IMAGE_MODES value
*/
int Constraint_mode_from_label(const char * label);
/** @defgroup c64 Commodore 64
* Some C64 video mode related functions
* @{