-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathversion.rc.in
70 lines (62 loc) · 3.42 KB
/
version.rc.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/****************************************************************************/
// Copyright (C) 2009 Aali132 //
// Copyright (C) 2018 quantumpencil //
// Copyright (C) 2018 Maxime Bacoux //
// Copyright (C) 2020 myst6re //
// Copyright (C) 2020 Chris Rizzitello //
// Copyright (C) 2020 John Pritchard //
// Copyright (C) 2025 Julian Xhokaxhiu //
// //
// This file is part of FFNx //
// //
// FFNx 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 3 of the License //
// //
// FFNx is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details. //
/****************************************************************************/
#include <windows.h>
#define VER_FILEVERSION @_DLL_RCVERSION@
#define VER_FILEVERSION_STR "@_DLL_RCSTRVERSION@\0"
#define VER_PRODUCTVERSION @_DLL_RCVERSION@
#define VER_PRODUCTVERSION_STR "@_DLL_RCSTRVERSION@\0"
#define VER_INTERNALNAME "@RELEASE_NAME@"
#define VER_PRODUCTNAME "@RELEASE_NAME@"
#define VER_ORIGINALFILENAME "@RELEASE_NAME@.dll"
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
PRODUCTVERSION VER_PRODUCTVERSION
FILEOS VOS__WINDOWS32
FILETYPE VFT_DLL
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "Julian Xhokaxhiu"
VALUE "FileDescription", "Next generation driver for Final Fantasy VII and Final Fantasy VIII ( with native Steam 2013 release support! )"
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "InternalName", VER_INTERNALNAME
VALUE "LegalCopyright", "GPLv3"
VALUE "LegalTrademarks1", ""
VALUE "LegalTrademarks2", ""
VALUE "OriginalFilename", VER_ORIGINALFILENAME
VALUE "ProductName", VER_PRODUCTNAME
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
END
END
BLOCK "VarFileInfo"
BEGIN
/* The following line should only be modified for localized versions. */
/* It consists of any number of WORD,WORD pairs, with each pair */
/* describing a language,codepage combination supported by the file. */
/* */
/* For example, a file might have values "0x409,1252" indicating that it */
/* supports English language (0x409) in the Windows ANSI codepage (1252). */
VALUE "Translation", 0x409, 1252
END
END