mirror of
https://git.code.sf.net/p/zint/code
synced 2025-12-18 02:17:06 +00:00
and remove from individual .c files; rename include dirs "C:\myprograms\tcl9.0" -> "C:\Tcl" and lib dirs "C:\myprograms\tcl9.0\lib" -> "C:\Tcl\lib"; suppress some warnings backend_tcl/zint.c: suppress some warnings tools/update_version.php: update for "backend_tcl/zint_tcl.dsp" -> ".vcxproj" manual.pmd: backend_tcl: fix "require package" -> "package require" and explain "C:\Tcl" may need adjusting general: update copyright years in ".rc" files library: remove needless `eci` zeroing in `set_symbol_defaults()` and make `barcode_seg_funcs` initialization consistent (147 now)
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
#include <winver.h>
|
|
|
|
#define VER_FILEVERSION 2,13,0,9
|
|
#define VER_FILEVERSION_STR "2.13.0.9\0"
|
|
|
|
#ifdef GCC_WINDRES
|
|
VS_VERSION_INFO VERSIONINFO
|
|
#else
|
|
VS_VERSION_INFO VERSIONINFO
|
|
#endif
|
|
FILEVERSION VER_FILEVERSION
|
|
PRODUCTVERSION VER_FILEVERSION
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
#ifdef _DEBUG
|
|
FILEFLAGS VS_FF_DEBUG
|
|
#else
|
|
FILEFLAGS 0
|
|
#endif
|
|
FILEOS VOS_NT_WINDOWS32
|
|
FILETYPE VFT_DLL
|
|
FILESUBTYPE VFT2_UNKNOWN
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904E4"
|
|
//language ID = U.S. English, char set = Windows, Multilingual
|
|
BEGIN
|
|
VALUE "FileDescription", "libzint barcode library\0"
|
|
VALUE "FileVersion", VER_FILEVERSION_STR
|
|
VALUE "InternalName", "zint.dll\0"
|
|
VALUE "LegalCopyright", "Copyright © 2025 Robin Stuart & BogDan Vatra\0"
|
|
VALUE "OriginalFilename", "zint.dll\0"
|
|
VALUE "ProductName", "libzint\0"
|
|
VALUE "ProductVersion", VER_FILEVERSION_STR
|
|
VALUE "License", "BSD-3-Clause\0"
|
|
VALUE "WWW", "https://www.sourceforge.net/projects/zint\0"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x0409, 1250
|
|
END
|
|
END
|