Rename the config directory to config_parser.

This commit is contained in:
László Monda
2017-08-06 16:52:04 +02:00
parent 01baa31241
commit f779f3ec6f
10 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,25 @@
#ifndef __PARSE_CONFIG_H__
#define __PARSE_CONFIG_H__
// Includes:
#include "config_state.h"
// Typedefs:
typedef enum {
ParserError_Success,
ParserError_InvalidSerializedKeystrokeType,
ParserError_InvalidSerializedMouseAction,
ParserError_InvalidSerializedKeyActionType,
ParserError_InvalidLayerCount,
ParserError_InvalidModuleCount,
ParserError_InvalidActionCount,
ParserError_InvalidSerializedMacroActionType,
} parser_error_t;
// Functions:
parser_error_t ParseConfig(config_buffer_t *buffer);
#endif