diff options
author | Zhanna Tsitkov <tsitkova@mit.edu> | 2010-07-08 13:40:11 +0000 |
---|---|---|
committer | Zhanna Tsitkov <tsitkova@mit.edu> | 2010-07-08 13:40:11 +0000 |
commit | ce59ac4b606bcb0e573fd503107cfe4718408f53 (patch) | |
tree | 54e7ac93ecf4317e2c6ab44dc8b508d96767d51a /src/plugin_core/plugin_loader.h | |
parent | f20bdd512468b94cb004afe64ebfd827ec9d6eaf (diff) | |
download | krb5-plugins.tar.gz |
Changed return types of the plugin related functions per "Plugin support improvements" Project Proposal review.plugins
Introduced plugin_version and removed plugin_id config attr.
git-svn-id: svn://anonsvn.mit.edu/krb5/branches/plugins@24177 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/plugin_core/plugin_loader.h')
-rw-r--r-- | src/plugin_core/plugin_loader.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/plugin_core/plugin_loader.h b/src/plugin_core/plugin_loader.h index 867d84e6a..30afa52ab 100644 --- a/src/plugin_core/plugin_loader.h +++ b/src/plugin_core/plugin_loader.h @@ -27,8 +27,6 @@ typedef struct { plhandle (*create_api)(const char*); } plugin_loader; -/* Utility functions */ -void get_loader_content(loader_handle handle, const char* container[]); -plhandle create_api(loader_handle handle, const char* plugin_name); +krb5_error_code plugin_loader_create_api(loader_handle handle, const char* plugin_name, plhandle *); #endif /* PLUGIN_LOADER_H_ */ |