Created
June 29, 2015 08:39
-
-
Save furandon-pig/e7529b3aebca01e9b05b to your computer and use it in GitHub Desktop.
Win10PcapをVisual C++ 2008 Expressでビルドする際の修正内容です。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Installer/Installer.rc b/Installer/Installer.rc | |
index 3d7ad54..80d3490 100644 | |
--- a/Installer/Installer.rc | |
+++ b/Installer/Installer.rc | |
@@ -7,7 +7,7 @@ | |
// | |
// Generated from the TEXTINCLUDE 2 resource. | |
// | |
-#include "afxres.h" | |
+#include "windows.h" | |
///////////////////////////////////////////////////////////////////////////// | |
#undef APSTUDIO_READONLY_SYMBOLS | |
@@ -34,7 +34,7 @@ END | |
2 TEXTINCLUDE | |
BEGIN | |
- "#include ""afxres.h""\r\n" | |
+ "#include ""windows.h""\r\n" | |
"\0" | |
END | |
diff --git a/NdisDriver/NdisDriver.rc b/NdisDriver/NdisDriver.rc | |
index bdc2459..9550875 100644 | |
--- a/NdisDriver/NdisDriver.rc | |
+++ b/NdisDriver/NdisDriver.rc | |
@@ -7,7 +7,7 @@ | |
// | |
// Generated from the TEXTINCLUDE 2 resource. | |
// | |
-#include "afxres.h" | |
+#include "windows.h" | |
///////////////////////////////////////////////////////////////////////////// | |
#undef APSTUDIO_READONLY_SYMBOLS | |
@@ -34,7 +34,7 @@ END | |
2 TEXTINCLUDE | |
BEGIN | |
- "#include ""afxres.h""\r\n" | |
+ "#include ""windows.h""\r\n" | |
"\0" | |
END | |
diff --git a/Packet_dll/Packet_dll.rc b/Packet_dll/Packet_dll.rc | |
index e815e09..1babaf0 100644 | |
--- a/Packet_dll/Packet_dll.rc | |
+++ b/Packet_dll/Packet_dll.rc | |
@@ -7,7 +7,7 @@ | |
// | |
// Generated from the TEXTINCLUDE 2 resource. | |
// | |
-#include "afxres.h" | |
+#include "windows.h" | |
///////////////////////////////////////////////////////////////////////////// | |
#undef APSTUDIO_READONLY_SYMBOLS | |
@@ -34,7 +34,7 @@ END | |
2 TEXTINCLUDE | |
BEGIN | |
- "#include ""afxres.h""\r\n" | |
+ "#include ""windows.h""\r\n" | |
"\0" | |
END | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment