/ include / lscore / types.h
types.h
 1  // SPDX-FileCopyrightText: 2023-2025 Le'Sec Core collective
 2  //
 3  // SPDX-License-Identifier: LGPL-3.0-or-later
 4  
 5  #ifndef LSC_TYPES_H
 6  # define LSC_TYPES_H
 7  
 8  # ifdef __cplusplus
 9  extern "C" {
10  # endif
11  
12    typedef struct LSC_environment_st LSC_environment_t;
13    typedef struct LSC_implementation_bag_st LSC_implementation_bag_t;
14    typedef struct LSC_index_bag_st LSC_index_bag_t;
15    typedef struct LSC_plugin_st LSC_plugin_t;
16  
17  # ifdef __cplusplus
18  }
19  # endif
20  
21  #endif