From f2e8bc12750fa88c784aceba1732542aede34c7d Mon Sep 17 00:00:00 2001 From: Gordon <46924906+FGadvancer@users.noreply.github.com> Date: Mon, 24 Jun 2024 18:32:11 +0800 Subject: [PATCH] feat: incr sync version. --- go/export.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/go/export.go b/go/export.go index b381541..d922b70 100644 --- a/go/export.go +++ b/go/export.go @@ -1103,6 +1103,14 @@ func get_joined_group_list(cCallback C.CB_S_I_S_S, operationID *C.char) { open_im_sdk.GetJoinedGroupList(baseCallback, C.GoString(operationID)) } +// GetJoinedGroupListPage retrieves the list of joined groups with pagination +// +//export get_joined_group_list_page +func get_joined_group_list_page(cCallback C.CB_S_I_S_S, operationID *C.char, offset, count C.int) { + baseCallback := NewBaseCallback(cCallback, operationID) + open_im_sdk.GetJoinedGroupListPage(baseCallback, C.GoString(operationID), int32(offset), int32(count)) +} + // GetSpecifiedGroupsInfo retrieves the information of specified groups // //export get_specified_groups_info