changeset 2454:375da267d994

Un-staticize functions in the main program.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 15 Apr 2020 14:18:43 +0300
parents 11151bc8d056
children ac42dccc6b7c
files tools/gfxconv.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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;