summaryrefslogtreecommitdiff
path: root/module/p11-kit.h
diff options
context:
space:
mode:
Diffstat (limited to 'module/p11-kit.h')
-rw-r--r--module/p11-kit.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/module/p11-kit.h b/module/p11-kit.h
index 88b0b8a..919d6b8 100644
--- a/module/p11-kit.h
+++ b/module/p11-kit.h
@@ -39,19 +39,19 @@ CK_RV p11_kit_initialize_registered (void);
CK_RV p11_kit_finalize_registered (void);
-char** p11_kit_registered_names (void);
+CK_FUNCTION_LIST_PTR* p11_kit_registered_modules (void);
-CK_FUNCTION_LIST_PTR p11_kit_registered_module (const char *module_name);
+char* p11_kit_registered_module_to_name (CK_FUNCTION_LIST_PTR funcs);
-void p11_kit_free_names (char **module_names);
+CK_FUNCTION_LIST_PTR p11_kit_registered_name_to_module (const char *name);
-char* p11_kit_registered_option (const char *module_name,
+char* p11_kit_registered_option (CK_FUNCTION_LIST_PTR funcs,
const char *field);
-CK_RV p11_kit_initialize_module (CK_FUNCTION_LIST_PTR module,
+CK_RV p11_kit_initialize_module (CK_FUNCTION_LIST_PTR funcs,
CK_C_INITIALIZE_ARGS_PTR init_args);
-CK_RV p11_kit_finalize_module (CK_FUNCTION_LIST_PTR module,
+CK_RV p11_kit_finalize_module (CK_FUNCTION_LIST_PTR funcs,
CK_VOID_PTR reserved);
#endif /* __P11_KIT_H__ */