diff options
author | jbzdarkid <jbzdarkid@gmail.com> | 2018-10-30 19:15:43 -0700 |
---|---|---|
committer | jbzdarkid <jbzdarkid@gmail.com> | 2018-10-30 19:15:43 -0700 |
commit | 80c90a97d23eb73f287fc6302ab500c568c5a9a0 (patch) | |
tree | a2175aa636da1c6e28a58cb0c98ba96ad0b02ded | |
parent | 1f28f8da49561b16e358082641b8ec4dd36f1cc9 (diff) | |
download | witness-tutorializer-80c90a97d23eb73f287fc6302ab500c568c5a9a0.tar.gz witness-tutorializer-80c90a97d23eb73f287fc6302ab500c568c5a9a0.tar.bz2 witness-tutorializer-80c90a97d23eb73f287fc6302ab500c568c5a9a0.zip |
still fine
-rw-r--r-- | Source/Source.rc | 33 | ||||
-rw-r--r-- | Source/Source.vcxproj | 1 | ||||
-rw-r--r-- | Source/Source.vcxproj.filters | 3 | ||||
-rw-r--r-- | Source/stdafx.h | 2 | ||||
-rw-r--r-- | Source/targetver.h | 8 |
5 files changed, 2 insertions, 45 deletions
diff --git a/Source/Source.rc b/Source/Source.rc index 7e2ce4e..b981a72 100644 --- a/Source/Source.rc +++ b/Source/Source.rc | |||
@@ -8,7 +8,7 @@ | |||
8 | // Generated from the TEXTINCLUDE 2 resource. | 8 | // Generated from the TEXTINCLUDE 2 resource. |
9 | // | 9 | // |
10 | #ifndef APSTUDIO_INVOKED | 10 | #ifndef APSTUDIO_INVOKED |
11 | #include "targetver.h" | 11 | #include <SDKDDKVer.h> |
12 | #endif | 12 | #endif |
13 | #define APSTUDIO_HIDDEN_SYMBOLS | 13 | #define APSTUDIO_HIDDEN_SYMBOLS |
14 | #include "windows.h" | 14 | #include "windows.h" |
@@ -24,31 +24,6 @@ | |||
24 | LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US | 24 | LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US |
25 | #pragma code_page(1252) | 25 | #pragma code_page(1252) |
26 | 26 | ||
27 | ///////////////////////////////////////////////////////////////////////////// | ||
28 | // | ||
29 | // Icon | ||
30 | // | ||
31 | |||
32 | // Icon with lowest ID value placed first to ensure application icon | ||
33 | // remains consistent on all systems. | ||
34 | IDI_SOURCE ICON "Source.ico" | ||
35 | |||
36 | IDI_SMALL ICON "small.ico" | ||
37 | |||
38 | |||
39 | ///////////////////////////////////////////////////////////////////////////// | ||
40 | // | ||
41 | // Menu | ||
42 | // | ||
43 | |||
44 | |||
45 | |||
46 | ///////////////////////////////////////////////////////////////////////////// | ||
47 | // | ||
48 | // Accelerator | ||
49 | // | ||
50 | |||
51 | |||
52 | 27 | ||
53 | #ifdef APSTUDIO_INVOKED | 28 | #ifdef APSTUDIO_INVOKED |
54 | ///////////////////////////////////////////////////////////////////////////// | 29 | ///////////////////////////////////////////////////////////////////////////// |
@@ -80,12 +55,6 @@ END | |||
80 | 55 | ||
81 | #endif // APSTUDIO_INVOKED | 56 | #endif // APSTUDIO_INVOKED |
82 | 57 | ||
83 | |||
84 | ///////////////////////////////////////////////////////////////////////////// | ||
85 | // | ||
86 | // String Table | ||
87 | // | ||
88 | |||
89 | STRINGTABLE | 58 | STRINGTABLE |
90 | BEGIN | 59 | BEGIN |
91 | IDS_APP_TITLE "Witness Randomizer" | 60 | IDS_APP_TITLE "Witness Randomizer" |
diff --git a/Source/Source.vcxproj b/Source/Source.vcxproj index d4b3a2b..65cf3e7 100644 --- a/Source/Source.vcxproj +++ b/Source/Source.vcxproj | |||
@@ -168,7 +168,6 @@ | |||
168 | <ClInclude Include="RandomizerCore.h" /> | 168 | <ClInclude Include="RandomizerCore.h" /> |
169 | <ClInclude Include="Resource.h" /> | 169 | <ClInclude Include="Resource.h" /> |
170 | <ClInclude Include="stdafx.h" /> | 170 | <ClInclude Include="stdafx.h" /> |
171 | <ClInclude Include="targetver.h" /> | ||
172 | </ItemGroup> | 171 | </ItemGroup> |
173 | <ItemGroup> | 172 | <ItemGroup> |
174 | <ClCompile Include="Main.cpp" /> | 173 | <ClCompile Include="Main.cpp" /> |
diff --git a/Source/Source.vcxproj.filters b/Source/Source.vcxproj.filters index 7e15255..c286fde 100644 --- a/Source/Source.vcxproj.filters +++ b/Source/Source.vcxproj.filters | |||
@@ -18,9 +18,6 @@ | |||
18 | <ClInclude Include="stdafx.h"> | 18 | <ClInclude Include="stdafx.h"> |
19 | <Filter>Header Files</Filter> | 19 | <Filter>Header Files</Filter> |
20 | </ClInclude> | 20 | </ClInclude> |
21 | <ClInclude Include="targetver.h"> | ||
22 | <Filter>Header Files</Filter> | ||
23 | </ClInclude> | ||
24 | <ClInclude Include="Resource.h"> | 21 | <ClInclude Include="Resource.h"> |
25 | <Filter>Header Files</Filter> | 22 | <Filter>Header Files</Filter> |
26 | </ClInclude> | 23 | </ClInclude> |
diff --git a/Source/stdafx.h b/Source/stdafx.h index 102badc..2ffed81 100644 --- a/Source/stdafx.h +++ b/Source/stdafx.h | |||
@@ -5,7 +5,7 @@ | |||
5 | 5 | ||
6 | #pragma once | 6 | #pragma once |
7 | 7 | ||
8 | #include "targetver.h" | 8 | #include <SDKDDKVer.h> |
9 | 9 | ||
10 | #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers | 10 | #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers |
11 | // Windows Header Files | 11 | // Windows Header Files |
diff --git a/Source/targetver.h b/Source/targetver.h deleted file mode 100644 index 87c0086..0000000 --- a/Source/targetver.h +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | #pragma once | ||
2 | |||
3 | // Including SDKDDKVer.h defines the highest available Windows platform. | ||
4 | |||
5 | // If you wish to build your application for a previous Windows platform, include WinSDKVer.h and | ||
6 | // set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h. | ||
7 | |||
8 | #include <SDKDDKVer.h> | ||