commit 86aa9f9905e67265bda01589a89dcd0c770c4367 Author: DevWiki Date: Tue Jun 6 17:31:52 2023 +0800 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..748d660 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/.idea/ +/.vs +/Debug +/*/Debug diff --git a/WinDevice.sln b/WinDevice.sln new file mode 100644 index 0000000..d4a24ac --- /dev/null +++ b/WinDevice.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.32802.440 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WinDevice", "WinDevice\WinDevice.vcxproj", "{FC07175F-EC7A-4CE5-9F7F-976DC6AED04D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {FC07175F-EC7A-4CE5-9F7F-976DC6AED04D}.Debug|x64.ActiveCfg = Debug|x64 + {FC07175F-EC7A-4CE5-9F7F-976DC6AED04D}.Debug|x64.Build.0 = Debug|x64 + {FC07175F-EC7A-4CE5-9F7F-976DC6AED04D}.Debug|x86.ActiveCfg = Debug|Win32 + {FC07175F-EC7A-4CE5-9F7F-976DC6AED04D}.Debug|x86.Build.0 = Debug|Win32 + {FC07175F-EC7A-4CE5-9F7F-976DC6AED04D}.Release|x64.ActiveCfg = Release|x64 + {FC07175F-EC7A-4CE5-9F7F-976DC6AED04D}.Release|x64.Build.0 = Release|x64 + {FC07175F-EC7A-4CE5-9F7F-976DC6AED04D}.Release|x86.ActiveCfg = Release|Win32 + {FC07175F-EC7A-4CE5-9F7F-976DC6AED04D}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {EDEC4B2D-CA8C-4804-AA9A-9B281C1CE576} + EndGlobalSection +EndGlobal diff --git a/WinDevice/WinDevice.cpp b/WinDevice/WinDevice.cpp new file mode 100644 index 0000000..8907baa --- /dev/null +++ b/WinDevice/WinDevice.cpp @@ -0,0 +1,20 @@ +// WinDevice.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 +// + +#include + +int main() +{ + std::cout << "Hello World!\n"; +} + +// 运行程序: Ctrl + F5 或调试 >“开始执行(不调试)”菜单 +// 调试程序: F5 或调试 >“开始调试”菜单 + +// 入门使用技巧: +// 1. 使用解决方案资源管理器窗口添加/管理文件 +// 2. 使用团队资源管理器窗口连接到源代码管理 +// 3. 使用输出窗口查看生成输出和其他消息 +// 4. 使用错误列表窗口查看错误 +// 5. 转到“项目”>“添加新项”以创建新的代码文件,或转到“项目”>“添加现有项”以将现有代码文件添加到项目 +// 6. 将来,若要再次打开此项目,请转到“文件”>“打开”>“项目”并选择 .sln 文件 diff --git a/WinDevice/WinDevice.vcxproj b/WinDevice/WinDevice.vcxproj new file mode 100644 index 0000000..55d6b28 --- /dev/null +++ b/WinDevice/WinDevice.vcxproj @@ -0,0 +1,147 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + Win32Proj + {fc07175f-ec7a-4ce5-9f7f-976dc6aed04d} + WinDevice + 10.0 + + + + Application + true + v142 + Unicode + + + Application + false + v142 + true + Unicode + + + Application + true + v142 + Unicode + + + Application + false + v142 + true + Unicode + + + + + + + + + + + + + + + + + + + + + true + + + false + + + true + + + false + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + + + + + \ No newline at end of file diff --git a/WinDevice/WinDevice.vcxproj.filters b/WinDevice/WinDevice.vcxproj.filters new file mode 100644 index 0000000..4795808 --- /dev/null +++ b/WinDevice/WinDevice.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + 源文件 + + + \ No newline at end of file diff --git a/WinDevice/WinDevice.vcxproj.user b/WinDevice/WinDevice.vcxproj.user new file mode 100644 index 0000000..88a5509 --- /dev/null +++ b/WinDevice/WinDevice.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file