[client] overlay: add new configuration overlay [wip]

This commit is contained in:
Geoffrey McRae
2021-08-04 10:27:47 +10:00
parent 80c9f7223a
commit d2c36b8449
6 changed files with 31 additions and 4 deletions

View File

@@ -22,6 +22,7 @@ endif()
add_subdirectory(src/platform)
set(COMMON_SOURCES
src/appstrings.c
src/stringutils.c
src/stringlist.c
src/option.c

View File

@@ -87,4 +87,11 @@ typedef enum CursorType
}
CursorType;
typedef struct StringPair
{
const char * name;
const char * value;
}
StringPair;
#endif