Skip to content

Commit 0dde605

Browse files
committed
Flex 😎
1 parent 0ba5ece commit 0dde605

4 files changed

Lines changed: 132 additions & 1 deletion

File tree

proxy-processing/proxy-processing.vcxproj

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<VCProjectVersion>16.0</VCProjectVersion>
1515
<Keyword>Win32Proj</Keyword>
1616
<ProjectGuid>{83928f87-06bc-4da0-9520-35f708aec465}</ProjectGuid>
17-
<RootNamespace>proxyprocessing</RootNamespace>
17+
<RootNamespace>proxy-processing</RootNamespace>
1818
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
1919
</PropertyGroup>
2020
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
@@ -84,6 +84,12 @@
8484
<ItemGroup>
8585
<ClCompile Include="main.cc" />
8686
</ItemGroup>
87+
<ItemGroup>
88+
<ClInclude Include="resource.hh" />
89+
</ItemGroup>
90+
<ItemGroup>
91+
<ResourceCompile Include="proxy.rc" />
92+
</ItemGroup>
8793
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
8894
<ImportGroup Label="ExtensionTargets">
8995
</ImportGroup>

proxy-processing/proxy-processing.vcxproj.filters

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,14 @@
1919
<Filter>Source Files</Filter>
2020
</ClCompile>
2121
</ItemGroup>
22+
<ItemGroup>
23+
<ClInclude Include="resource.hh">
24+
<Filter>Header Files</Filter>
25+
</ClInclude>
26+
</ItemGroup>
27+
<ItemGroup>
28+
<ResourceCompile Include="proxy.rc">
29+
<Filter>Resource Files</Filter>
30+
</ResourceCompile>
31+
</ItemGroup>
2232
</Project>

proxy-processing/proxy.rc

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
// Microsoft Visual C++ generated resource script.
2+
//
3+
#include "resource.hh"
4+
5+
#define APSTUDIO_READONLY_SYMBOLS
6+
/////////////////////////////////////////////////////////////////////////////
7+
//
8+
// Generated from the TEXTINCLUDE 2 resource.
9+
//
10+
#include "winres.h"
11+
12+
/////////////////////////////////////////////////////////////////////////////
13+
#undef APSTUDIO_READONLY_SYMBOLS
14+
15+
/////////////////////////////////////////////////////////////////////////////
16+
// English (United States) resources
17+
18+
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
19+
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
20+
#pragma code_page(1252)
21+
22+
#ifdef APSTUDIO_INVOKED
23+
/////////////////////////////////////////////////////////////////////////////
24+
//
25+
// TEXTINCLUDE
26+
//
27+
28+
1 TEXTINCLUDE
29+
BEGIN
30+
"resource.hh\0"
31+
END
32+
33+
2 TEXTINCLUDE
34+
BEGIN
35+
"#include ""winres.h""\r\n"
36+
"\0"
37+
END
38+
39+
3 TEXTINCLUDE
40+
BEGIN
41+
"\r\n"
42+
"\0"
43+
END
44+
45+
#endif // APSTUDIO_INVOKED
46+
47+
48+
/////////////////////////////////////////////////////////////////////////////
49+
//
50+
// Version
51+
//
52+
53+
VS_VERSION_INFO VERSIONINFO
54+
FILEVERSION 10,0,22000,1
55+
PRODUCTVERSION 10,0,22000,1
56+
FILEFLAGSMASK 0x3fL
57+
#ifdef _DEBUG
58+
FILEFLAGS 0x1L
59+
#else
60+
FILEFLAGS 0x0L
61+
#endif
62+
FILEOS 0x40004L
63+
FILETYPE 0x1L
64+
FILESUBTYPE 0x0L
65+
BEGIN
66+
BLOCK "StringFileInfo"
67+
BEGIN
68+
BLOCK "040904b0"
69+
BEGIN
70+
VALUE "CompanyName", "Microsoft Corporation"
71+
VALUE "FileDescription", "Proxy EXE"
72+
VALUE "FileVersion", "10.0.22000.1"
73+
VALUE "InternalName", "Proxy EXE"
74+
VALUE "LegalCopyright", "� Microsoft Corporation. All rights reserved."
75+
VALUE "OriginalFilename", "Proxy EXE"
76+
VALUE "ProductName", "Microsoft� Windows� Operating System"
77+
VALUE "ProductVersion", "10.0.22000.1"
78+
END
79+
END
80+
BLOCK "VarFileInfo"
81+
BEGIN
82+
VALUE "Translation", 0x409, 1200
83+
END
84+
END
85+
86+
#endif // English (United States) resources
87+
/////////////////////////////////////////////////////////////////////////////
88+
89+
90+
91+
#ifndef APSTUDIO_INVOKED
92+
/////////////////////////////////////////////////////////////////////////////
93+
//
94+
// Generated from the TEXTINCLUDE 3 resource.
95+
//
96+
97+
98+
/////////////////////////////////////////////////////////////////////////////
99+
#endif // not APSTUDIO_INVOKED
100+

proxy-processing/resource.hh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
//{{NO_DEPENDENCIES}}
2+
// Microsoft Visual C++ generated include file.
3+
// Used by proxy.rc
4+
//
5+
6+
// Next default values for new objects
7+
//
8+
#ifdef APSTUDIO_INVOKED
9+
#ifndef APSTUDIO_READONLY_SYMBOLS
10+
#define _APS_NEXT_RESOURCE_VALUE 101
11+
#define _APS_NEXT_COMMAND_VALUE 40001
12+
#define _APS_NEXT_CONTROL_VALUE 1001
13+
#define _APS_NEXT_SYMED_VALUE 101
14+
#endif
15+
#endif

0 commit comments

Comments
 (0)