├── .gitattributes ├── .gitignore ├── ClassDiagram.cd ├── Debug ├── MFCSERIALTEST.Build.CppClean.log ├── MFCSERIALTEST.log ├── MFCSERIALTEST.obj ├── MFCSERIALTEST.pch ├── MFCSERIALTEST.res ├── MFCSERIALTEST.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── MFCSERIALTEST.lastbuildstate │ ├── cl.command.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── rc.command.1.tlog │ ├── rc.read.1.tlog │ └── rc.write.1.tlog ├── MFCSERIALTESTDlg.obj ├── QUEUE.obj ├── SERIALPORT.obj ├── stdafx.obj ├── vc120.idb └── vc120.pdb ├── MFCSERIALTEST.APS ├── MFCSERIALTEST.cpp ├── MFCSERIALTEST.h ├── MFCSERIALTEST.rc ├── MFCSERIALTEST.vcxproj ├── MFCSERIALTEST.vcxproj.filters ├── MFCSERIALTESTDlg.cpp ├── MFCSERIALTESTDlg.h ├── QUEUE.h ├── ReadMe.txt ├── Resource.h ├── SERIALPORT.cpp ├── SERIALPORT.h ├── SerialPortThread.cpp ├── SerialPortThread.h ├── data.txt ├── queue.cpp ├── res ├── MFCSERIALTEST.ico └── MFCSERIALTEST.rc2 ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | -------------------------------------------------------------------------------- /ClassDiagram.cd: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Debug/MFCSERIALTEST.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\mfcserialtest.pch 2 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\vc120.pdb 3 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\vc120.idb 4 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\stdafx.obj 5 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\mfcserialtest.obj 6 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\mfcserialtestdlg.obj 7 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\queue.obj 8 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\serialport.obj 9 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\mfcserialtest.res 10 | d:\我的文档\visual studio 2013\projects\mfcserialtest\debug\mfcserialtest.ilk 11 | d:\我的文档\visual studio 2013\projects\mfcserialtest\debug\mfcserialtest.exe 12 | d:\我的文档\visual studio 2013\projects\mfcserialtest\debug\mfcserialtest.pdb 13 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\mfcserialtest.tlog\cl.read.1.tlog 14 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\mfcserialtest.tlog\cl.write.1.tlog 15 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\mfcserialtest.tlog\cl.command.1.tlog 16 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\mfcserialtest.tlog\rc.read.1.tlog 17 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\mfcserialtest.tlog\rc.write.1.tlog 18 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\mfcserialtest.tlog\rc.command.1.tlog 19 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\mfcserialtest.tlog\link.read.1.tlog 20 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\mfcserialtest.tlog\link.write.1.tlog 21 | d:\我的文档\visual studio 2013\projects\mfcserialtest\mfcserialtest\debug\mfcserialtest.tlog\link.command.1.tlog 22 | -------------------------------------------------------------------------------- /Debug/MFCSERIALTEST.log: -------------------------------------------------------------------------------- 1 | 生成启动时间为 3/24/2016 8:54:50 PM。 2 | 1>项目“D:\我的文档\Visual Studio 2013\Projects\MFCSERIALTEST\MFCSERIALTEST\MFCSERIALTEST.vcxproj”在节点 2 上(Build 个目标)。 3 | 1>ClCompile: 4 | D:\Software\Visual Studio 2013\VC\bin\CL.exe /c /ZI /nologo /W3 /WX- /sdl /Od /Oy- /D WIN32 /D _WINDOWS /D _DEBUG /D _CRT_SECURE_NO_WARNINGS /D _MBCS /D _AFXDLL /Gm /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Yu"stdafx.h" /Fp"Debug\MFCSERIALTEST.pch" /Fo"Debug\\" /Fd"Debug\vc120.pdb" /Gd /TP /analyze- /errorReport:prompt MFCSERIALTESTDlg.cpp 5 | MFCSERIALTESTDlg.cpp 6 | Link: 7 | D:\Software\Visual Studio 2013\VC\bin\link.exe /ERRORREPORT:PROMPT /OUT:"D:\我的文档\Visual Studio 2013\Projects\MFCSERIALTEST\Debug\MFCSERIALTEST.exe" /INCREMENTAL /NOLOGO /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /manifestinput:"D:\Software\Visual Studio 2013\VC\Include\Manifest\dpiaware.manifest" /DEBUG /PDB:"D:\我的文档\Visual Studio 2013\Projects\MFCSERIALTEST\Debug\MFCSERIALTEST.pdb" /SUBSYSTEM:WINDOWS /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"D:\我的文档\Visual Studio 2013\Projects\MFCSERIALTEST\Debug\MFCSERIALTEST.lib" /MACHINE:X86 Debug\MFCSERIALTEST.res 8 | Debug\MFCSERIALTEST.obj 9 | Debug\MFCSERIALTESTDlg.obj 10 | Debug\QUEUE.obj 11 | Debug\SERIALPORT.obj 12 | Debug\stdafx.obj 13 | MFCSERIALTEST.vcxproj -> D:\我的文档\Visual Studio 2013\Projects\MFCSERIALTEST\Debug\MFCSERIALTEST.exe 14 | 1>已完成生成项目“D:\我的文档\Visual Studio 2013\Projects\MFCSERIALTEST\MFCSERIALTEST\MFCSERIALTEST.vcxproj”(Build 个目标)的操作。 15 | 16 | 生成成功。 17 | 18 | 已用时间 00:00:05.87 19 | -------------------------------------------------------------------------------- /Debug/MFCSERIALTEST.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/MFCSERIALTEST.obj -------------------------------------------------------------------------------- /Debug/MFCSERIALTEST.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/MFCSERIALTEST.pch -------------------------------------------------------------------------------- /Debug/MFCSERIALTEST.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/MFCSERIALTEST.res -------------------------------------------------------------------------------- /Debug/MFCSERIALTEST.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/MFCSERIALTEST.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Debug/MFCSERIALTEST.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/MFCSERIALTEST.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Debug/MFCSERIALTEST.tlog/MFCSERIALTEST.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Debug|Win32|D:\我的文档\Visual Studio 2013\Projects\MFCSERIALTEST\| 3 | -------------------------------------------------------------------------------- /Debug/MFCSERIALTEST.tlog/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/MFCSERIALTEST.tlog/cl.command.1.tlog -------------------------------------------------------------------------------- /Debug/MFCSERIALTEST.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/MFCSERIALTEST.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Debug/MFCSERIALTEST.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/MFCSERIALTEST.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Debug/MFCSERIALTEST.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/MFCSERIALTEST.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Debug/MFCSERIALTEST.tlog/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/MFCSERIALTEST.tlog/rc.command.1.tlog -------------------------------------------------------------------------------- /Debug/MFCSERIALTEST.tlog/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/MFCSERIALTEST.tlog/rc.read.1.tlog -------------------------------------------------------------------------------- /Debug/MFCSERIALTEST.tlog/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/MFCSERIALTEST.tlog/rc.write.1.tlog -------------------------------------------------------------------------------- /Debug/MFCSERIALTESTDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/MFCSERIALTESTDlg.obj -------------------------------------------------------------------------------- /Debug/QUEUE.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/QUEUE.obj -------------------------------------------------------------------------------- /Debug/SERIALPORT.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/SERIALPORT.obj -------------------------------------------------------------------------------- /Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/stdafx.obj -------------------------------------------------------------------------------- /Debug/vc120.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/vc120.idb -------------------------------------------------------------------------------- /Debug/vc120.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Debug/vc120.pdb -------------------------------------------------------------------------------- /MFCSERIALTEST.APS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/MFCSERIALTEST.APS -------------------------------------------------------------------------------- /MFCSERIALTEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/MFCSERIALTEST.cpp -------------------------------------------------------------------------------- /MFCSERIALTEST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/MFCSERIALTEST.h -------------------------------------------------------------------------------- /MFCSERIALTEST.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/MFCSERIALTEST.rc -------------------------------------------------------------------------------- /MFCSERIALTEST.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | 14 | {098D3887-9C1C-4D6E-8256-9097229AF1E7} 15 | MFCSERIALTEST 16 | MFCProj 17 | 18 | 19 | 20 | Application 21 | true 22 | v120 23 | MultiByte 24 | Dynamic 25 | 26 | 27 | Application 28 | false 29 | v120 30 | true 31 | Unicode 32 | Dynamic 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | true 46 | 47 | 48 | false 49 | 50 | 51 | 52 | Use 53 | Level3 54 | Disabled 55 | WIN32;_WINDOWS;_DEBUG;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) 56 | true 57 | 58 | 59 | Windows 60 | true 61 | 62 | 63 | false 64 | true 65 | _DEBUG;%(PreprocessorDefinitions) 66 | 67 | 68 | 0x0804 69 | _DEBUG;%(PreprocessorDefinitions) 70 | $(IntDir);%(AdditionalIncludeDirectories) 71 | 72 | 73 | 74 | 75 | Level3 76 | Use 77 | MaxSpeed 78 | true 79 | true 80 | WIN32;_WINDOWS;NDEBUG;%(PreprocessorDefinitions) 81 | true 82 | 83 | 84 | Windows 85 | true 86 | true 87 | true 88 | 89 | 90 | false 91 | true 92 | NDEBUG;%(PreprocessorDefinitions) 93 | 94 | 95 | 0x0804 96 | NDEBUG;%(PreprocessorDefinitions) 97 | $(IntDir);%(AdditionalIncludeDirectories) 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | Create 119 | Create 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | -------------------------------------------------------------------------------- /MFCSERIALTEST.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 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 | 60 | 61 | 62 | 资源文件 63 | 64 | 65 | 66 | 67 | 资源文件 68 | 69 | 70 | 71 | 72 | 73 | 资源文件 74 | 75 | 76 | -------------------------------------------------------------------------------- /MFCSERIALTESTDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/MFCSERIALTESTDlg.cpp -------------------------------------------------------------------------------- /MFCSERIALTESTDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/MFCSERIALTESTDlg.h -------------------------------------------------------------------------------- /QUEUE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/QUEUE.h -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- 1 | ================================================================================ 2 | MICROSOFT 基础类库 : MFCSERIALTEST 项目概述 3 | =============================================================================== 4 | 5 | 应用程序向导已为您创建了此 MFCSERIALTEST 应用程序。此应用程序不仅演示 Microsoft 基础类的基本使用方法,还可作为您编写应用程序的起点。 6 | 7 | 本文件概要介绍组成 MFCSERIALTEST 应用程序的每个文件的内容。 8 | 9 | MFCSERIALTEST.vcxproj 10 | 这是使用应用程序向导生成的 VC++ 项目的主项目文件,其中包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。 11 | 12 | MFCSERIALTEST.vcxproj.filters 13 | 这是使用“应用程序向导”生成的 VC++ 项目筛选器文件。它包含有关项目文件与筛选器之间的关联信息。在 IDE 中,通过这种关联,在特定节点下以分组形式显示具有相似扩展名的文件。例如,“.cpp”文件与“源文件”筛选器关联。 14 | 15 | MFCSERIALTEST.h 16 | 这是应用程序的主头文件。 17 | 其中包括其他项目特定的标头(包括 Resource.h),并声明 CMFCSERIALTESTApp 应用程序类。 18 | 19 | MFCSERIALTEST.cpp 20 | 这是包含应用程序类 CMFCSERIALTESTApp 的主应用程序源文件。 21 | 22 | MFCSERIALTEST.rc 23 | 这是程序使用的所有 Microsoft Windows 资源的列表。它包括 RES 子目录中存储的图标、位图和光标。此文件可以直接在 Microsoft Visual C++ 中进行编辑。项目资源包含在 2052 中。 24 | 25 | res\MFCSERIALTEST.ico 26 | 这是用作应用程序图标的图标文件。此图标包括在主资源文件 MFCSERIALTEST.rc 中。 27 | 28 | res\MFCSERIALTEST.rc2 29 | 此文件包含不在 Microsoft Visual C++ 中进行编辑的资源。您应该将不可由资源编辑器编辑的所有资源放在此文件中。 30 | 31 | 32 | ///////////////////////////////////////////////////////////////////////////// 33 | 34 | 应用程序向导创建一个对话框类: 35 | 36 | MFCSERIALTESTDlg.h、MFCSERIALTESTDlg.cpp - 对话框 37 | 这些文件包含 CMFCSERIALTESTDlg 类。此类定义应用程序的主对话框的行为。对话框模板包含在 MFCSERIALTEST.rc 中,该文件可以在 Microsoft Visual C++ 中编辑。 38 | 39 | ///////////////////////////////////////////////////////////////////////////// 40 | 41 | 其他功能: 42 | 43 | ActiveX 控件 44 | 该应用程序包含对使用 ActiveX 控件的支持。 45 | 46 | ///////////////////////////////////////////////////////////////////////////// 47 | 48 | 其他标准文件: 49 | 50 | StdAfx.h, StdAfx.cpp 51 | 这些文件用于生成名为 MFCSERIALTEST.pch 的预编译头 (PCH) 文件和名为 StdAfx.obj 的预编译类型文件。 52 | 53 | Resource.h 54 | 这是标准头文件,可用于定义新的资源 ID。Microsoft Visual C++ 将读取并更新此文件。 55 | 56 | MFCSERIALTEST.manifest 57 | Windows XP 使用应用程序清单文件来描述特定版本的并行程序集的应用程序依赖项。加载程序使用这些信息来从程序集缓存中加载相应的程序集,并保护其不被应用程序访问。应用程序清单可能会包含在内,以作为与应用程序可执行文件安装在同一文件夹中的外部 .manifest 文件进行重新分发,它还可能以资源的形式包含在可执行文件中。 58 | ///////////////////////////////////////////////////////////////////////////// 59 | 60 | 其他注释: 61 | 62 | 应用程序向导使用“TODO:”来指示应添加或自定义的源代码部分。 63 | 64 | 如果应用程序使用共享 DLL 中的 MFC,您将需要重新分发 MFC DLL。如果应用程序所使用的语言与操作系统的区域设置不同,则还需要重新分发相应的本地化资源 mfc110XXX.DLL。 65 | 有关上述话题的更多信息,请参见 MSDN 文档中有关重新分发 Visual C++ 应用程序的部分。 66 | 67 | ///////////////////////////////////////////////////////////////////////////// 68 | -------------------------------------------------------------------------------- /Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/Resource.h -------------------------------------------------------------------------------- /SERIALPORT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/SERIALPORT.cpp -------------------------------------------------------------------------------- /SERIALPORT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/SERIALPORT.h -------------------------------------------------------------------------------- /SerialPortThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/SerialPortThread.cpp -------------------------------------------------------------------------------- /SerialPortThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/SerialPortThread.h -------------------------------------------------------------------------------- /data.txt: -------------------------------------------------------------------------------- 1 | aa1 fb2 de3 54 ff5 -------------------------------------------------------------------------------- /queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/queue.cpp -------------------------------------------------------------------------------- /res/MFCSERIALTEST.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/res/MFCSERIALTEST.ico -------------------------------------------------------------------------------- /res/MFCSERIALTEST.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/res/MFCSERIALTEST.rc2 -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/stdafx.cpp -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoyceFeng/MFCSERIALTEST/6efd462d01d66be1afd03bf5425c7238587627df/targetver.h --------------------------------------------------------------------------------