You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pn...@apache.org on 2023/12/30 23:46:52 UTC

(celix) branch feature/509-remove-cpputests updated: Replace array_list with celix_array_list in conan exmpl test

This is an automated email from the ASF dual-hosted git repository.

pnoltes pushed a commit to branch feature/509-remove-cpputests
in repository https://gitbox.apache.org/repos/asf/celix.git


The following commit(s) were added to refs/heads/feature/509-remove-cpputests by this push:
     new a851bf9f Replace array_list with celix_array_list in conan exmpl test
a851bf9f is described below

commit a851bf9fb6b8132b596212accf81f05013c819f3
Author: Pepijn Noltes <pn...@apache.org>
AuthorDate: Sun Dec 31 00:46:45 2023 +0100

    Replace array_list with celix_array_list in conan exmpl test
---
 examples/conan_test_package/my_rsa_activator.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/examples/conan_test_package/my_rsa_activator.c b/examples/conan_test_package/my_rsa_activator.c
index e8f81714..8ba78934 100644
--- a/examples/conan_test_package/my_rsa_activator.c
+++ b/examples/conan_test_package/my_rsa_activator.c
@@ -34,21 +34,21 @@ typedef struct my_remote_service_admin_activator {
     long svcIdRsa;
 } my_remote_service_admin_activator_t;
 
-static celix_status_t remoteServiceAdmin_exportService(remote_service_admin_t *admin, char *serviceId, celix_properties_t *properties, array_list_pt *registrations) {
+static celix_status_t remoteServiceAdmin_exportService(remote_service_admin_t *admin, char *serviceId, celix_properties_t *properties, celix_array_list_t** registrations) {
     (void)properties;
     (void)registrations;
     celix_logHelper_info(admin->loghelper, "%s called: serviceId=%s\n", __FUNCTION__, serviceId);
     return CELIX_SUCCESS;
 }
 
-static celix_status_t remoteServiceAdmin_getExportedServices(remote_service_admin_t *admin, array_list_pt *services) {
+static celix_status_t remoteServiceAdmin_getExportedServices(remote_service_admin_t *admin, celix_array_list_t** services) {
     celix_status_t status = CELIX_SUCCESS;
     (void)services;
     celix_logHelper_info(admin->loghelper, "%s called\n", __FUNCTION__);
     return status;
 }
 
-static celix_status_t remoteServiceAdmin_getImportedEndpoints(remote_service_admin_t *admin, array_list_pt *services) {
+static celix_status_t remoteServiceAdmin_getImportedEndpoints(remote_service_admin_t *admin, celix_array_list_t** services) {
     celix_status_t status = CELIX_SUCCESS;
     (void)services;
     celix_logHelper_info(admin->loghelper, "%s called\n", __FUNCTION__);