-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathapp.rc
More file actions
59 lines (48 loc) · 1.41 KB
/
app.rc
File metadata and controls
59 lines (48 loc) · 1.41 KB
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
//////////////////////////////////////////////////////////////////////////////
//
// Archivo Manifest genérico para Windows XP/Vista
//
#if !defined(wxUSE_NO_MANIFEST) || (wxUSE_NO_MANIFEST == 0)
#if !defined(WX_MSC_FULL_VER) || WX_MSC_FULL_VER < 140040130
// ver la página sobre "isolated applications" en MSDN
#
#ifdef ISOLATION_AWARE_ENABLED
#define APP_MANIFEST 2
#else
#define APP_MANIFEST 1
#endif
#define RT_MANIFEST 24
APP_MANIFEST RT_MANIFEST phpbrowserbox.exe.Manifest
#endif // !defined(WX_MSC_FULL_VER) || WX_MSC_FULL_VER < 140040130
#endif // !defined(wxUSE_NO_MANIFEST) || (wxUSE_NO_MANIFEST == 0)
#include <windows.h> // include for version info constants
A ICON "icon.ico"
//
// TO CHANGE VERSION INFORMATION, EDIT PROJECT OPTIONS...
//
1 VERSIONINFO
FILEVERSION 6,0,0,0
PRODUCTVERSION 6,0
FILETYPE VFT_APP
{
BLOCK "StringFileInfo"
{
BLOCK "040904E4"
{
VALUE "FileDescription", "PHPBrowserBox"
VALUE "Type", "Application"
VALUE "FileVersion", "6.0.0.0"
VALUE "ProductName", "PHPBrowserBox"
VALUE "WebsiteName", "phpbrowserbox.com"
VALUE "ProductVersion", "6.0"
VALUE "LegalCopyright", "Copyright 2023 Africoders Network"
VALUE "LegalTrademarks", "Copyright 2023 Africoders Network"
VALUE "InternalName", "PHPBrowserBox"
VALUE "OriginalFilename", "phpbrowserbox.exe"
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x0409, 1252
}
}