1 /* 2 * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef TEST_RUNNER_UUID_H 8 #define TEST_RUNNER_UUID_H 9 10 #ifdef __cplusplus 11 extern "C" { 12 #endif 13 14 #define TS_TEST_RUNNER_SERVICE_UUID \ 15 { 0x33, 0xc7, 0x5b, 0xaf, 0xac, 0x6a, 0x4f, 0xe4, 0x8a, 0xc7, 0xe9, 0x90, 0x9b, 0xee, 0x2d, 0x17 } 16 17 #ifdef __cplusplus 18 } 19 #endif 20 21 #endif /* TEST_RUNNER_UUID_H */ 22