diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-03-03 14:29:17 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-03-03 14:29:17 +0100 |
| commit | a3685d46c883c96e122b12bfebc6975705962e07 (patch) | |
| tree | cddf8e88aee97ffe791ebaf5a5243d2346d8450d /src/definitions.h | |
v2 initial commit
Diffstat (limited to 'src/definitions.h')
| -rw-r--r-- | src/definitions.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/definitions.h b/src/definitions.h new file mode 100644 index 0000000..2bf70ae --- /dev/null +++ b/src/definitions.h @@ -0,0 +1,16 @@ +#ifndef INCLUDE_EMBEDDED_RESOURCES +#define INCLUDE_EMBEDDED_RESOURCES + +#define TS_VERSION "v1.0.0" + +// Find these with dumpbin [objfile] /SYMBOLS +extern "C" +{ +extern unsigned char _binary_LICENSE_start[]; +extern unsigned char _binary_LICENSE_end[]; + +extern unsigned char _binary_misc_logo_64_png_start[]; +extern unsigned char _binary_misc_logo_64_png_end[]; +} + +#endif
\ No newline at end of file |
