1 /* 2 * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef TS_RPC_CALLER_LINUX_H 8 #define TS_RPC_CALLER_LINUX_H 9 10 #include "rpc_caller.h" 11 12 #ifdef __cplusplus 13 extern "C" { 14 #endif 15 16 RPC_CALLER_EXPORTED 17 rpc_status_t ts_rpc_caller_linux_init(struct rpc_caller_interface *rpc_caller); 18 19 RPC_CALLER_EXPORTED 20 rpc_status_t ts_rpc_caller_linux_deinit(struct rpc_caller_interface *rpc_caller); 21 22 #ifdef __cplusplus 23 } 24 #endif 25 26 #endif /* TS_RPC_CALLER_LINUX_H */ 27