|
| 1 | +/* |
| 2 | + Licensed to the Apache Software Foundation (ASF) under one |
| 3 | + or more contributor license agreements. See the NOTICE file |
| 4 | + distributed with this work for additional information |
| 5 | + regarding copyright ownership. The ASF licenses this file |
| 6 | + to you under the Apache License, Version 2.0 (the |
| 7 | + "License"); you may not use this file except in compliance |
| 8 | + with the License. You may obtain a copy of the License at |
| 9 | +
|
| 10 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +
|
| 12 | + Unless required by applicable law or agreed to in writing, |
| 13 | + software distributed under the License is distributed on an |
| 14 | + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | + KIND, either express or implied. See the License for the |
| 16 | + specific language governing permissions and limitations |
| 17 | + under the License. |
| 18 | + */ |
| 19 | + |
| 20 | +#include "celix_array_list_ei.h" |
| 21 | + |
| 22 | +extern "C" { |
| 23 | + |
| 24 | +void *__real_celix_arrayList_create(void); |
| 25 | +CELIX_EI_DEFINE(celix_arrayList_create, celix_array_list_t*) |
| 26 | +void *__wrap_celix_arrayList_create(void) { |
| 27 | + CELIX_EI_IMPL(celix_arrayList_create); |
| 28 | + return __real_celix_arrayList_create(); |
| 29 | +} |
| 30 | + |
| 31 | +void *__real_celix_arrayList_createWithOptions(const celix_array_list_create_options_t* opts); |
| 32 | +CELIX_EI_DEFINE(celix_arrayList_createWithOptions, celix_array_list_t*) |
| 33 | +void *__wrap_celix_arrayList_createWithOptions(const celix_array_list_create_options_t* opts) { |
| 34 | + CELIX_EI_IMPL(celix_arrayList_createWithOptions); |
| 35 | + return __real_celix_arrayList_createWithOptions(opts); |
| 36 | +} |
| 37 | + |
| 38 | +celix_status_t __real_celix_arrayList_add(celix_array_list_t* list, void* value); |
| 39 | +CELIX_EI_DEFINE(celix_arrayList_add, celix_status_t) |
| 40 | +celix_status_t __wrap_celix_arrayList_add(celix_array_list_t* list, void* value) { |
| 41 | + CELIX_EI_IMPL(celix_arrayList_add); |
| 42 | + return __real_celix_arrayList_add(list, value); |
| 43 | +} |
| 44 | + |
| 45 | +celix_status_t __real_celix_arrayList_addInt(celix_array_list_t* list, int value); |
| 46 | +CELIX_EI_DEFINE(celix_arrayList_addInt, celix_status_t) |
| 47 | +celix_status_t __wrap_celix_arrayList_addInt(celix_array_list_t* list, int value) { |
| 48 | + CELIX_EI_IMPL(celix_arrayList_addInt); |
| 49 | + return __real_celix_arrayList_addInt(list, value); |
| 50 | +} |
| 51 | + |
| 52 | +celix_status_t __real_celix_arrayList_addLong(celix_array_list_t* list, long value); |
| 53 | +CELIX_EI_DEFINE(celix_arrayList_addLong, celix_status_t) |
| 54 | +celix_status_t __wrap_celix_arrayList_addLong(celix_array_list_t* list, long value) { |
| 55 | + CELIX_EI_IMPL(celix_arrayList_addLong); |
| 56 | + return __real_celix_arrayList_addLong(list, value); |
| 57 | +} |
| 58 | + |
| 59 | +celix_status_t __real_celix_arrayList_addUInt(celix_array_list_t* list, unsigned int value); |
| 60 | +CELIX_EI_DEFINE(celix_arrayList_addUInt, celix_status_t) |
| 61 | +celix_status_t __wrap_celix_arrayList_addUInt(celix_array_list_t* list, unsigned int value) { |
| 62 | + CELIX_EI_IMPL(celix_arrayList_addUInt); |
| 63 | + return __real_celix_arrayList_addUInt(list, value); |
| 64 | +} |
| 65 | + |
| 66 | +celix_status_t __real_celix_arrayList_addULong(celix_array_list_t* list, unsigned long value); |
| 67 | +CELIX_EI_DEFINE(celix_arrayList_addULong, celix_status_t) |
| 68 | +celix_status_t __wrap_celix_arrayList_addULong(celix_array_list_t* list, unsigned long value) { |
| 69 | + CELIX_EI_IMPL(celix_arrayList_addULong); |
| 70 | + return __real_celix_arrayList_addULong(list, value); |
| 71 | +} |
| 72 | + |
| 73 | +celix_status_t __real_celix_arrayList_addFloat(celix_array_list_t* list, float value); |
| 74 | +CELIX_EI_DEFINE(celix_arrayList_addFloat, celix_status_t) |
| 75 | +celix_status_t __wrap_celix_arrayList_addFloat(celix_array_list_t* list, float value) { |
| 76 | + CELIX_EI_IMPL(celix_arrayList_addFloat); |
| 77 | + return __real_celix_arrayList_addFloat(list, value); |
| 78 | +} |
| 79 | + |
| 80 | +celix_status_t __real_celix_arrayList_addDouble(celix_array_list_t* list, double value); |
| 81 | +CELIX_EI_DEFINE(celix_arrayList_addDouble, celix_status_t) |
| 82 | +celix_status_t __wrap_celix_arrayList_addDouble(celix_array_list_t* list, double value) { |
| 83 | + CELIX_EI_IMPL(celix_arrayList_addDouble); |
| 84 | + return __real_celix_arrayList_addDouble(list, value); |
| 85 | +} |
| 86 | + |
| 87 | +celix_status_t __real_celix_arrayList_addBool(celix_array_list_t* list, bool value); |
| 88 | +CELIX_EI_DEFINE(celix_arrayList_addBool, celix_status_t) |
| 89 | +celix_status_t __wrap_celix_arrayList_addBool(celix_array_list_t* list, bool value) { |
| 90 | + CELIX_EI_IMPL(celix_arrayList_addBool); |
| 91 | + return __real_celix_arrayList_addBool(list, value); |
| 92 | +} |
| 93 | + |
| 94 | +celix_status_t __real_celix_arrayList_addSize(celix_array_list_t* list, size_t value); |
| 95 | +CELIX_EI_DEFINE(celix_arrayList_addSize, celix_status_t) |
| 96 | +celix_status_t __wrap_celix_arrayList_addSize(celix_array_list_t* list, size_t value) { |
| 97 | + CELIX_EI_IMPL(celix_arrayList_addSize); |
| 98 | + return __real_celix_arrayList_addSize(list, value); |
| 99 | +} |
| 100 | + |
| 101 | +} |
0 commit comments