comparison Plugins/Engine/PluginsEnumerations.cpp @ 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 8dc468f44661
children eb8fbcf008b5
comparison
equal deleted inserted replaced
1629:bad4772b605c 1630:ffd23c0104af
293 return ErrorCode_NotLuaPredicate; 293 return ErrorCode_NotLuaPredicate;
294 294
295 case OrthancPluginErrorCode_LuaReturnsNoString: 295 case OrthancPluginErrorCode_LuaReturnsNoString:
296 return ErrorCode_LuaReturnsNoString; 296 return ErrorCode_LuaReturnsNoString;
297 297
298 case OrthancPluginErrorCode_StorageAreaAlreadyRegistered:
299 return ErrorCode_StorageAreaAlreadyRegistered;
300
301 case OrthancPluginErrorCode_DatabaseBackendAlreadyRegistered:
302 return ErrorCode_DatabaseBackendAlreadyRegistered;
303
304 case OrthancPluginErrorCode_DatabasePlugin:
305 return ErrorCode_DatabasePlugin;
306
298 default: 307 default:
299 return ErrorCode_Plugin; 308 return ErrorCode_Plugin;
300 } 309 }
301 } 310 }
302 311