1 /*
2  * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef BLOCK_STORAGE_UUID_H
8 #define BLOCK_STORAGE_UUID_H
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 #define TS_BLOCK_STORAGE_SERVICE_UUID \
15 { 0x63, 0x64, 0x6e, 0x80, 0xeb, 0x52, 0x46, 0x2f, 0xac, 0x4f, 0x8c, 0xdf, 0x39, 0x87, 0x51, 0x9c }
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 #endif /* BLOCK_STORAGE_UUID_H */
22