comparison Core/Enumerations.h @ 1630:ffd23c0104af

"/system" URI gives information about the plugins used for storage area and DB back-end
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 21 Sep 2015 13:26:45 +0200
parents 2dff2bdffdb8
children 87c77b9b3679
comparison
equal deleted inserted replaced
1629:bad4772b605c 1630:ffd23c0104af
126 ErrorCode_CannotCreateLua = 2030 /*!< Cannot create the Lua context */, 126 ErrorCode_CannotCreateLua = 2030 /*!< Cannot create the Lua context */,
127 ErrorCode_CannotExecuteLua = 2031 /*!< Cannot execute a Lua command */, 127 ErrorCode_CannotExecuteLua = 2031 /*!< Cannot execute a Lua command */,
128 ErrorCode_LuaAlreadyExecuted = 2032 /*!< Arguments cannot be pushed after the Lua function is executed */, 128 ErrorCode_LuaAlreadyExecuted = 2032 /*!< Arguments cannot be pushed after the Lua function is executed */,
129 ErrorCode_LuaBadOutput = 2033 /*!< The Lua function does not give the expected number of outputs */, 129 ErrorCode_LuaBadOutput = 2033 /*!< The Lua function does not give the expected number of outputs */,
130 ErrorCode_NotLuaPredicate = 2034 /*!< The Lua function is not a predicate (only true/false outputs allowed) */, 130 ErrorCode_NotLuaPredicate = 2034 /*!< The Lua function is not a predicate (only true/false outputs allowed) */,
131 ErrorCode_LuaReturnsNoString = 2035 /*!< The Lua function does not return a string */ 131 ErrorCode_LuaReturnsNoString = 2035 /*!< The Lua function does not return a string */,
132 ErrorCode_StorageAreaAlreadyRegistered = 2036 /*!< Another plugin has already registered a custom storage area */,
133 ErrorCode_DatabaseBackendAlreadyRegistered = 2037 /*!< Another plugin has already registered a custom database back-end */,
134 ErrorCode_DatabasePlugin = 2038 /*!< The plugin implementing a custom database back-end does not fulfill the proper interface */
132 }; 135 };
133 136
134 enum LogLevel 137 enum LogLevel
135 { 138 {
136 LogLevel_Error, 139 LogLevel_Error,