Rename the config directory to config_parser.
This commit is contained in:
25
right/src/config_parser/parse_config.h
Normal file
25
right/src/config_parser/parse_config.h
Normal 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
|
||||
Reference in New Issue
Block a user