From 5e7a46b5ecc9e95cfcb89337fe1bddccf2f2171f Mon Sep 17 00:00:00 2001 From: heck Date: Sat, 10 Apr 2021 00:32:59 +0200 Subject: [PATCH] LIB11: adapter_group.h - comment out unimplemented query functions --- src/adapter_group.cc | 38 +++++++++++++++++++------------------- src/adapter_group.h | 28 ++++++++++++++-------------- 2 files changed, 33 insertions(+), 33 deletions(-) diff --git a/src/adapter_group.cc b/src/adapter_group.cc index 6b7b475..3c96ff0 100644 --- a/src/adapter_group.cc +++ b/src/adapter_group.cc @@ -71,25 +71,25 @@ DYNAMIC_API PEP_STATUS adapter_group_rating( *************************************************************************************************/ -DYNAMIC_API PEP_STATUS group_query_groups(PEP_SESSION session, identity_list **groups) -{ - pEpLog("called"); - return PEP_STATUS_OK; -} - -DYNAMIC_API PEP_STATUS -group_query_manager(PEP_SESSION session, const pEp_identity *const group, pEp_identity **manager) -{ - pEpLog("called"); - return PEP_STATUS_OK; -} - -DYNAMIC_API PEP_STATUS -group_query_members(PEP_SESSION session, const pEp_identity *const group, identity_list **members) -{ - pEpLog("called"); - return PEP_STATUS_OK; -} +//DYNAMIC_API PEP_STATUS group_query_groups(PEP_SESSION session, identity_list **groups) +//{ +// pEpLog("called"); +// return PEP_STATUS_OK; +//} +// +//DYNAMIC_API PEP_STATUS +//group_query_manager(PEP_SESSION session, const pEp_identity *const group, pEp_identity **manager) +//{ +// pEpLog("called"); +// return PEP_STATUS_OK; +//} +// +//DYNAMIC_API PEP_STATUS +//group_query_members(PEP_SESSION session, const pEp_identity *const group, identity_list **members) +//{ +// pEpLog("called"); +// return PEP_STATUS_OK; +//} #ifdef __cplusplus } diff --git a/src/adapter_group.h b/src/adapter_group.h index b3fe44d..e11a046 100644 --- a/src/adapter_group.h +++ b/src/adapter_group.h @@ -219,10 +219,10 @@ DYNAMIC_API PEP_STATUS adapter_group_rating( * */ -DYNAMIC_API PEP_STATUS group_query_groups( - PEP_SESSION session, - identity_list **groups -); +//DYNAMIC_API PEP_STATUS group_query_groups( +// PEP_SESSION session, +// identity_list **groups +//); /** * @@ -240,11 +240,11 @@ DYNAMIC_API PEP_STATUS group_query_groups( * */ -DYNAMIC_API PEP_STATUS group_query_manager( - PEP_SESSION session, - const pEp_identity *const group, - pEp_identity **manager -); +//DYNAMIC_API PEP_STATUS group_query_manager( +// PEP_SESSION session, +// const pEp_identity *const group, +// pEp_identity **manager +//); /** * @@ -262,11 +262,11 @@ DYNAMIC_API PEP_STATUS group_query_manager( * */ -DYNAMIC_API PEP_STATUS group_query_members( - PEP_SESSION session, - const pEp_identity *const group, - identity_list **members -); +//DYNAMIC_API PEP_STATUS group_query_members( +// PEP_SESSION session, +// const pEp_identity *const group, +// identity_list **members +//); #ifdef __cplusplus