File tree Expand file tree Collapse file tree 6 files changed +12
-11
lines changed Expand file tree Collapse file tree 6 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 1
1
# Variables that describe dependencies
2
- LSP_COMMON_LIB_VERSION := 1.0.2
2
+ LSP_COMMON_LIB_VERSION := 1.0.3
3
3
LSP_COMMON_LIB_NAME := lsp-common-lib
4
4
LSP_COMMON_LIB_URL := https://github.com/sadko4u/$(LSP_COMMON_LIB_NAME ) .git
5
5
LSP_COMMON_LIB_TYPE := hdr
6
6
7
- LSP_TEST_FW_VERSION := 1.0.2
7
+ LSP_TEST_FW_VERSION := 1.0.3
8
8
LSP_TEST_FW_NAME := lsp-test-fw
9
9
LSP_TEST_FW_URL := https://github.com/sadko4u/$(LSP_TEST_FW_NAME ) .git
10
10
LSP_TEST_FW_TYPE := src
Original file line number Diff line number Diff line change @@ -19,8 +19,10 @@ namespace lsp
19
19
{
20
20
typedef struct backend_metadata_t
21
21
{
22
- const char *id; // Enumeration unique identifier
23
- const char *display; // Display name
22
+ const char *id; // Enumeration unique identifier
23
+ const char *display; // Display name
24
+ const char *lc_key; // Localized display name key
25
+ version_t version; // Interface version
24
26
} backend_metadata_t ;
25
27
26
28
/* *
Original file line number Diff line number Diff line change 12
12
#include < lsp-plug.in/r3d/types.h>
13
13
#include < lsp-plug.in/r3d/base_backend.h>
14
14
15
- #define R3D_FACTORY_FUNCTION_NAME " lsp_r3d_factory"
16
-
17
15
namespace lsp
18
16
{
19
17
namespace r3d
@@ -38,10 +36,9 @@ namespace lsp
38
36
39
37
/* *
40
38
* Factory function prototype
41
- * @param version
42
- * @return
39
+ * @return pointer to the factory function
43
40
*/
44
- typedef factory_t *(* factory_function_t )(const char *version );
41
+ typedef factory_t *(* factory_function_t )();
45
42
}
46
43
}
47
44
Original file line number Diff line number Diff line change 11
11
#include < lsp-plug.in/r3d/version.h>
12
12
#include < lsp-plug.in/common/types.h>
13
13
14
+ #define LSP_R3D_FACTORY_FUNCTION_NAME " lsp_r3d_factory"
15
+ #define LSP_R3D_FACTORY_VERSION_NAME " lsp_r3d_version"
16
+
14
17
namespace lsp
15
18
{
16
19
namespace r3d
Original file line number Diff line number Diff line change 12
12
#define LSP_R3D_BASE_MINOR 5
13
13
#define LSP_R3D_BASE_MICRO 0
14
14
15
-
16
15
#endif /* LSP_PLUG_IN_R3D_VERSION_H_ */
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ ARTIFACT_NAME = lsp-r3d-base-lib
3
3
ARTIFACT_VARS = LSP_R3D_BASE_LIB
4
4
ARTIFACT_HEADERS = lsp-plug.in
5
5
ARTIFACT_EXPORT_ALL = 0
6
- VERSION = 0.5.0-devel
6
+ VERSION = 0.5.0
7
7
8
8
# List of dependencies
9
9
TEST_DEPENDENCIES = \
You can’t perform that action at this time.
0 commit comments