# HG changeset patch # User Matti Hamalainen # Date 1586949523 -10800 # Node ID 375da267d9944d832658457672be1488258a4523 # Parent 11151bc8d0561e33925b915f2057b72bf76c130a Un-staticize functions in the main program. diff -r 11151bc8d056 -r 375da267d994 tools/gfxconv.c --- a/tools/gfxconv.c Wed Apr 15 13:52:28 2020 +0300 +++ b/tools/gfxconv.c Wed Apr 15 14:18:43 2020 +0300 @@ -403,7 +403,7 @@ } -static BOOL dmParseMapOptionMapItem(const char *popt, DMMapValue *value, const unsigned int nmax, const char *msg) +BOOL dmParseMapOptionMapItem(const char *popt, DMMapValue *value, const unsigned int nmax, const char *msg) { char *end, *split, *opt = dm_strdup(popt); @@ -488,7 +488,7 @@ } -static BOOL dmParseMapOptionItem(char *opt, char *end, void *pvalue, const int index, const int nmax, const BOOL requireIndex, const char *msg) +BOOL dmParseMapOptionItem(char *opt, char *end, void *pvalue, const int index, const int nmax, const BOOL requireIndex, const char *msg) { // Trim whitespace if (end != NULL) @@ -1641,7 +1641,7 @@ } -static Uint8 dmConvertByte(const Uint8 *sp, const BOOL multicolor) +Uint8 dmConvertByte(const Uint8 *sp, const BOOL multicolor) { Uint8 byte = 0; int xc;