Subversion Repositories filter_foundry

Rev

Rev 206 | Rev 317 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 206 Rev 228
Line 17... Line 17...
17
    along with this program; if not, write to the Free Software
17
    along with this program; if not, write to the Free Software
18
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
*/
19
*/
20
 
20
 
21
/* Version info resource
21
/* Version info resource
22
   see http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcesdkr/html/_Tools_VERSIONINFO_Resource.asp
-
 
23
   and http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tools/tools/versioninfo_resource.asp */
22
   see https://docs.microsoft.com/en-us/windows/win32/menurc/versioninfo-resource */
24
 
23
 
25
#include "winver.h"
24
#include "winver.h"
26
 
25
 
27
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_AUS
26
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
28
VS_VERSION_INFO VERSIONINFO
27
VS_VERSION_INFO VERSIONINFO
29
 FILEVERSION	VI_VERS_NUM
28
 FILEVERSION	VI_VERS_NUM
30
 PRODUCTVERSION	VI_VERS_NUM
29
 PRODUCTVERSION	VI_VERS_NUM
31
 FILEFLAGSMASK	VS_FFI_FILEFLAGSMASK /*0x3fL*/
30
 FILEFLAGSMASK	VS_FFI_FILEFLAGSMASK /*0x3fL*/
32
 FILEFLAGS		VI_FLAGS
31
 FILEFLAGS		VI_FLAGS
Line 34... Line 33...
34
 FILETYPE		VFT_DLL
33
 FILETYPE		VFT_DLL
35
 FILESUBTYPE	VFT2_UNKNOWN
34
 FILESUBTYPE	VFT2_UNKNOWN
36
BEGIN
35
BEGIN
37
    BLOCK "StringFileInfo"
36
    BLOCK "StringFileInfo"
38
    BEGIN
37
    BEGIN
39
        BLOCK "080904B0"
38
        BLOCK "040904B0"
40
        BEGIN
39
        BEGIN
41
            VALUE "Comments",			VI_COMMENTS
40
            VALUE "Comments",			VI_COMMENTS
42
            VALUE "CompanyName",		"Telegraphics Pty Ltd, www.telegraphics.com.au\0"
41
            VALUE "CompanyName",		VI_COMPANY_NAME
43
            VALUE "FileDescription",	"Filter Foundry plugin for Photoshop(R)\0"
42
            VALUE "FileDescription",	"Filter Foundry plugin for Photoshop(R)\0"
44
            VALUE "FileVersion",		VERSION_STR "\0"
43
            VALUE "FileVersion",		VERSION_STR "\0"
45
            /*VALUE "InternalName",		"FilterFoundry\0"*/
44
            /*VALUE "InternalName",		"FilterFoundry\0"*/
46
            VALUE "LegalCopyright",		"Copyright (C) 2003-2009 Toby Thain, 2018-" RELEASE_YEAR " Daniel Marschall\0"
45
            VALUE "LegalCopyright",		"Copyright (C) 2003-2009 Toby Thain, 2018-" RELEASE_YEAR " Daniel Marschall\0"
47
            VALUE "License",			"This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\0"
46
            VALUE "License",			"This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\0"
48
            /*VALUE "LegalTrademarks",	"\0"*/
47
            /*VALUE "LegalTrademarks",	"\0"*/
-
 
48
#ifdef _WIN64
-
 
49
            VALUE "OriginalFilename",	"FilterFoundry64.8bf\0"
-
 
50
#else
49
            VALUE "OriginalFilename",	"FilterFoundry.8bf\0"
51
            VALUE "OriginalFilename",	"FilterFoundry.8bf\0"
-
 
52
#endif
50
            /*VALUE "PrivateBuild",		"\0"*/
53
            /*VALUE "PrivateBuild",		"\0"*/
51
            VALUE "ProductName",		"Filter Foundry\0"
54
            VALUE "ProductName",		"Filter Foundry\0"
52
            VALUE "ProductVersion",		VERSION_STR "\0"
55
            VALUE "ProductVersion",		VERSION_STR "\0"
53
            /*VALUE "SpecialBuild",		"\0"*/
56
            /*VALUE "SpecialBuild",		"\0"*/
54
        END
57
        END
55
    END
58
    END
56
    BLOCK "VarFileInfo" /* see http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wcesdkr/html/_tools_VarFileInfo_Block.asp */
59
    BLOCK "VarFileInfo" /* see https://docs.microsoft.com/en-us/windows/win32/menurc/varfileinfo-block */
57
    BEGIN                                   /* Attention: The translation code must be equal to the "StringFileInfo" block's translation! */
60
    BEGIN                                   /* Attention: The translation code must be equal to the "StringFileInfo" block's translation! */
58
        VALUE "Translation", 0x0809, 0x04B0	/* UK English, Unicode */
61
        VALUE "Translation", 0x0409, 0x04B0	/* US English, Unicode */
59
    END
62
    END
60
END
63
END