libyang  2.0.7
libyang is YANG data modelling language parser and toolkit written (and providing API) in C.
plugins.h
Go to the documentation of this file.
1 
15 #ifndef LY_PLUGINS_H_
16 #define LY_PLUGINS_H_
17 
18 #include "log.h"
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
67 enum LYPLG {
70 };
71 
86 LY_ERR lyplg_add(const char *pathname);
87 
90 #ifdef __cplusplus
91 }
92 #endif
93 
94 #endif /* LY_PLUGINS_H_ */
LY_ERR
libyang's error codes returned by the libyang functions.
Definition: log.h:242
LYPLG
Identifiers of the plugin type.
Definition: plugins.h:67
LY_ERR lyplg_add(const char *pathname)
Manually load a plugin file.
@ LYPLG_EXTENSION
Definition: plugins.h:69
@ LYPLG_TYPE
Definition: plugins.h:68
Logger manipulation routines and error definitions.