This library contains code that extends and simplifies different operations
for C language based programs.
Revisión | 4195689a1e1d553d40f64b70af47f18c9bb525c1 (tree) |
---|---|
Tiempo | 2023-02-26 02:52:17 |
Autor | Sergey Gusarov <laborer2008@gmai...> |
Commiter | Sergey Gusarov |
Added version_info.h application common template, added icon
@@ -21,6 +21,8 @@ | ||
21 | 21 | # define VER_ORIGINAL_FILE_NAME_STR CT_LIBRARY_NAME ".dll" |
22 | 22 | #endif |
23 | 23 | |
24 | +MAINICON ICON DISCARDABLE CT_ICON_PATH | |
25 | + | |
24 | 26 | // --------- resources of type Version ----------- |
25 | 27 | |
26 | 28 | 1 VERSIONINFO |
@@ -24,5 +24,7 @@ | ||
24 | 24 | #define {prefix}_BUILD_REVISION {rev} |
25 | 25 | #define {prefix}_INTERNAL_BUILD {is_internal} |
26 | 26 | |
27 | +#define {prefix}_ICON_PATH "resources/ctools.ico" | |
28 | + | |
27 | 29 | #define {prefix}_K_VERSION\ |
28 | 30 | CT_VER_STR_DOT({prefix}_MAJOR_VERSION, {prefix}_MINOR_VERSION, {prefix}_BUILD_REVISION) |
@@ -0,0 +1,30 @@ | ||
1 | +/* | |
2 | + * @author Sergey Gusarov <laborer2008 (at) gmail.com> | |
3 | + * @section LICENSE | |
4 | + * This Source Code Form is subject to the terms of the Mozilla Public | |
5 | + * License, v. 2.0. If a copy of the MPL was not distributed with this | |
6 | + * file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
7 | + * | |
8 | + * @section DESCRIPTION | |
9 | + * This file should be process by C/C++ compilers and MS resource compiler | |
10 | + * Do not edit. Automatically generated file. | |
11 | + * Template for applications only, copy it to the application project | |
12 | + */ | |
13 | + | |
14 | +#pragma once | |
15 | + | |
16 | +#include <ctools/std/stdbool.h> | |
17 | + | |
18 | + | |
19 | +#define {prefix}_APPLICATION_NAME "" | |
20 | + | |
21 | +#define {prefix}_MAJOR_VERSION {major_version} | |
22 | +#define {prefix}_MINOR_VERSION {minor_version} | |
23 | + | |
24 | +#define {prefix}_BUILD_REVISION {rev} | |
25 | +#define {prefix}_INTERNAL_BUILD {is_internal} | |
26 | + | |
27 | +#define {prefix}_ICON_PATH "" | |
28 | + | |
29 | +#define {prefix}_K_VERSION\ | |
30 | + CT_VER_STR_DOT({prefix}_MAJOR_VERSION, {prefix}_MINOR_VERSION, {prefix}_BUILD_REVISION) |