Line data Source code
1 : /* 2 : * Copyright(c) 2019 Intel Corporation 3 : * SPDX - License - Identifier: BSD - 2 - Clause - Patent 4 : */ 5 : 6 : #include <stdlib.h> 7 : 8 : #include "EbResourceCoordinationResults.h" 9 : 10 600 : EbErrorType resource_coordination_result_ctor( 11 : ResourceCoordinationResults *object_ptr, 12 : EbPtr object_init_data_ptr) 13 : { 14 : (void)object_ptr; 15 : (void)object_init_data_ptr; 16 : 17 600 : return EB_ErrorNone; 18 : } 19 : 20 600 : EbErrorType resource_coordination_result_creator( 21 : EbPtr *object_dbl_ptr, 22 : EbPtr object_init_data_ptr) 23 : { 24 : ResourceCoordinationResults* obj; 25 : 26 600 : *object_dbl_ptr = NULL; 27 600 : EB_NEW(obj, resource_coordination_result_ctor, object_init_data_ptr); 28 600 : *object_dbl_ptr = obj; 29 : 30 600 : return EB_ErrorNone; 31 : }