├── .gitattributes ├── .gitignore ├── COmronFins.cpp ├── COmronFins.h ├── CommunicationPLC.cpp ├── CommunicationPLC.h ├── Debug ├── CL.read.1.tlog ├── CL.write.1.tlog ├── COmronFins.obj ├── CommunicationPLC.obj ├── OmronFins.lastbuildstate ├── OmronFins.log ├── OmronFins.obj ├── OmronFins.pch ├── OmronFins.res ├── OmronFinsDlg.obj ├── Socket.obj ├── cl.command.1.tlog ├── link-cvtres.read.1.tlog ├── link-cvtres.write.1.tlog ├── link-mt.read.1.tlog ├── link-mt.write.1.tlog ├── link-rc.read.1.tlog ├── link-rc.write.1.tlog ├── link.1376-cvtres.read.1.tlog ├── link.1376-cvtres.write.1.tlog ├── link.1376-mt.read.1.tlog ├── link.1376-mt.write.1.tlog ├── link.1376-rc.read.1.tlog ├── link.1376-rc.write.1.tlog ├── link.1376.read.1.tlog ├── link.1376.write.1.tlog ├── link.1696-cvtres.read.1.tlog ├── link.1696-cvtres.write.1.tlog ├── link.1696-mt.read.1.tlog ├── link.1696-mt.write.1.tlog ├── link.1696-rc.read.1.tlog ├── link.1696-rc.write.1.tlog ├── link.1696.read.1.tlog ├── link.1696.write.1.tlog ├── link.6692-cvtres.read.1.tlog ├── link.6692-cvtres.write.1.tlog ├── link.6692-mt.read.1.tlog ├── link.6692-mt.write.1.tlog ├── link.6692-rc.read.1.tlog ├── link.6692-rc.write.1.tlog ├── link.6692.read.1.tlog ├── link.6692.write.1.tlog ├── link.9356-cvtres.read.1.tlog ├── link.9356-cvtres.write.1.tlog ├── link.9356-mt.read.1.tlog ├── link.9356-mt.write.1.tlog ├── link.9356-rc.read.1.tlog ├── link.9356-rc.write.1.tlog ├── link.9356.read.1.tlog ├── link.9356.write.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 ├── stdafx.obj ├── vc110.idb └── vc110.pdb ├── Define.h ├── Enum.h ├── OmronFins.aps ├── OmronFins.cpp ├── OmronFins.h ├── OmronFins.rc ├── OmronFins.vcxproj ├── OmronFins.vcxproj.filters ├── OmronFinsDlg.cpp ├── OmronFinsDlg.h ├── ReadMe.txt ├── Socket.cpp ├── Socket.h ├── Struct.h ├── res ├── OmronFins.ico └── OmronFins.rc2 ├── resource.h ├── 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 on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | 38 | # Directories potentially created on remote AFP share 39 | .AppleDB 40 | .AppleDesktop 41 | Network Trash Folder 42 | Temporary Items 43 | .apdisk 44 | -------------------------------------------------------------------------------- /COmronFins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/COmronFins.cpp -------------------------------------------------------------------------------- /COmronFins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/COmronFins.h -------------------------------------------------------------------------------- /CommunicationPLC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/CommunicationPLC.cpp -------------------------------------------------------------------------------- /CommunicationPLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/CommunicationPLC.h -------------------------------------------------------------------------------- /Debug/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/CL.read.1.tlog -------------------------------------------------------------------------------- /Debug/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/CL.write.1.tlog -------------------------------------------------------------------------------- /Debug/COmronFins.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/COmronFins.obj -------------------------------------------------------------------------------- /Debug/CommunicationPLC.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/CommunicationPLC.obj -------------------------------------------------------------------------------- /Debug/OmronFins.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v110:false 2 | Debug|Win32|D:\例子程序和资料\测试程序\OmronFins\| 3 | -------------------------------------------------------------------------------- /Debug/OmronFins.log: -------------------------------------------------------------------------------- 1 | 生成启动时间为 2015/5/7 9:07:17。 2 | 1>项目“D:\例子程序和资料\测试程序\OmronFins\OmronFins\OmronFins.vcxproj”在节点 2 上(Build 个目标)。 3 | 1>ClCompile: 4 | C:\Program Files\Microsoft Visual Studio 11.0\VC\bin\CL.exe /c /ZI /nologo /W3 /WX- /sdl /Od /Oy- /D WIN32 /D _WINDOWS /D _DEBUG /D _MBCS /D _AFXDLL /Gm /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Yu"stdafx.h" /Fp"Debug\OmronFins.pch" /Fo"Debug\\" /Fd"Debug\vc110.pdb" /Gd /TP /analyze- /errorReport:prompt COmronFins.cpp 5 | COmronFins.cpp 6 | 1>d:\例子程序和资料\测试程序\omronfins\omronfins\comronfins.h(34): warning C4099: “Omron::CCommunicationPLC”: 类型名称以前使用“struct”现在使用的是“class” 7 | d:\例子程序和资料\测试程序\omronfins\omronfins\communicationplc.h(29) : 参见“Omron::CCommunicationPLC”的声明 8 | 1>d:\例子程序和资料\测试程序\omronfins\omronfins\comronfins.cpp(136): warning C4101: “buffMel”: 未引用的局部变量 9 | 1>d:\例子程序和资料\测试程序\omronfins\omronfins\comronfins.cpp(201): warning C4101: “wSendBuf”: 未引用的局部变量 10 | 1>d:\例子程序和资料\测试程序\omronfins\omronfins\comronfins.cpp(200): warning C4101: “dwWflag”: 未引用的局部变量 11 | 1>d:\例子程序和资料\测试程序\omronfins\omronfins\comronfins.cpp(202): warning C4101: “ssid”: 未引用的局部变量 12 | 1>d:\例子程序和资料\测试程序\omronfins\omronfins\comronfins.cpp(200): warning C4101: “dwFlag”: 未引用的局部变量 13 | 1>d:\例子程序和资料\测试程序\omronfins\omronfins\comronfins.cpp(200): warning C4101: “dwSend”: 未引用的局部变量 14 | 1>d:\例子程序和资料\测试程序\omronfins\omronfins\comronfins.cpp(200): warning C4101: “nTransfer”: 未引用的局部变量 15 | 1>d:\例子程序和资料\测试程序\omronfins\omronfins\comronfins.cpp(202): warning C4101: “rsid”: 未引用的局部变量 16 | 1>d:\例子程序和资料\测试程序\omronfins\omronfins\comronfins.cpp(201): warning C4101: “wRecvBuf”: 未引用的局部变量 17 | 1>d:\例子程序和资料\测试程序\omronfins\omronfins\comronfins.cpp(200): warning C4101: “dwRecv”: 未引用的局部变量 18 | Link: 19 | C:\Program Files\Microsoft Visual Studio 11.0\VC\bin\link.exe /ERRORREPORT:PROMPT /OUT:"D:\例子程序和资料\测试程序\OmronFins\Debug\OmronFins.exe" /INCREMENTAL /NOLOGO /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /manifestinput:"C:\Program Files\Microsoft Visual Studio 11.0\VC\Include\Manifest\dpiaware.manifest" /DEBUG /PDB:"D:\例子程序和资料\测试程序\OmronFins\Debug\OmronFins.pdb" /SUBSYSTEM:WINDOWS /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"D:\例子程序和资料\测试程序\OmronFins\Debug\OmronFins.lib" /MACHINE:X86 Debug\OmronFins.res 20 | Debug\CommunicationPLC.obj 21 | Debug\COmronFins.obj 22 | Debug\OmronFins.obj 23 | Debug\OmronFinsDlg.obj 24 | Debug\Socket.obj 25 | Debug\stdafx.obj 26 | OmronFins.vcxproj -> D:\例子程序和资料\测试程序\OmronFins\Debug\OmronFins.exe 27 | 1>已完成生成项目“D:\例子程序和资料\测试程序\OmronFins\OmronFins\OmronFins.vcxproj”(Build 个目标)的操作。 28 | 29 | 生成成功。 30 | 31 | 已用时间 00:00:00.90 32 | -------------------------------------------------------------------------------- /Debug/OmronFins.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/OmronFins.obj -------------------------------------------------------------------------------- /Debug/OmronFins.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/OmronFins.pch -------------------------------------------------------------------------------- /Debug/OmronFins.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/OmronFins.res -------------------------------------------------------------------------------- /Debug/OmronFinsDlg.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/OmronFinsDlg.obj -------------------------------------------------------------------------------- /Debug/Socket.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/Socket.obj -------------------------------------------------------------------------------- /Debug/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/cl.command.1.tlog -------------------------------------------------------------------------------- /Debug/link-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link-cvtres.read.1.tlog -------------------------------------------------------------------------------- /Debug/link-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link-cvtres.write.1.tlog -------------------------------------------------------------------------------- /Debug/link-mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link-mt.read.1.tlog -------------------------------------------------------------------------------- /Debug/link-mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link-mt.write.1.tlog -------------------------------------------------------------------------------- /Debug/link-rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link-rc.read.1.tlog -------------------------------------------------------------------------------- /Debug/link-rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link-rc.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.1376-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.1376-cvtres.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.1376-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.1376-cvtres.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.1376-mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.1376-mt.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.1376-mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.1376-mt.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.1376-rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.1376-rc.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.1376-rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.1376-rc.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.1376.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.1376.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.1376.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.1376.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.1696-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.1696-cvtres.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.1696-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.1696-cvtres.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.1696-mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.1696-mt.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.1696-mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.1696-mt.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.1696-rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.1696-rc.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.1696-rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.1696-rc.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.1696.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.1696.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.1696.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.1696.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.6692-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.6692-cvtres.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.6692-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.6692-cvtres.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.6692-mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.6692-mt.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.6692-mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.6692-mt.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.6692-rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.6692-rc.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.6692-rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.6692-rc.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.6692.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.6692.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.6692.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.6692.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.9356-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.9356-cvtres.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.9356-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.9356-cvtres.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.9356-mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.9356-mt.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.9356-mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.9356-mt.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.9356-rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.9356-rc.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.9356-rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.9356-rc.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.9356.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.9356.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.9356.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.9356.write.1.tlog -------------------------------------------------------------------------------- /Debug/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.command.1.tlog -------------------------------------------------------------------------------- /Debug/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.read.1.tlog -------------------------------------------------------------------------------- /Debug/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/link.write.1.tlog -------------------------------------------------------------------------------- /Debug/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/rc.command.1.tlog -------------------------------------------------------------------------------- /Debug/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/rc.read.1.tlog -------------------------------------------------------------------------------- /Debug/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/rc.write.1.tlog -------------------------------------------------------------------------------- /Debug/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/stdafx.obj -------------------------------------------------------------------------------- /Debug/vc110.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/vc110.idb -------------------------------------------------------------------------------- /Debug/vc110.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Debug/vc110.pdb -------------------------------------------------------------------------------- /Define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Define.h -------------------------------------------------------------------------------- /Enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Enum.h -------------------------------------------------------------------------------- /OmronFins.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/OmronFins.aps -------------------------------------------------------------------------------- /OmronFins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/OmronFins.cpp -------------------------------------------------------------------------------- /OmronFins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/OmronFins.h -------------------------------------------------------------------------------- /OmronFins.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/OmronFins.rc -------------------------------------------------------------------------------- /OmronFins.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | 14 | {7BE392A1-DA80-4304-A88C-53F6B79BBCCC} 15 | OmronFins 16 | MFCProj 17 | 18 | 19 | 20 | Application 21 | true 22 | v110 23 | MultiByte 24 | Dynamic 25 | 26 | 27 | Application 28 | false 29 | v110 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;%(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 | 119 | 120 | 121 | 122 | 123 | Create 124 | Create 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | -------------------------------------------------------------------------------- /OmronFins.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;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 | {7851adc5-6649-429d-960b-3fa1ace1adb9} 18 | 19 | 20 | {07ee0fdd-d916-4bcb-90d9-38f32d88e375} 21 | 22 | 23 | {2ab88adc-5183-41f3-b732-1c61687ebd25} 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 头文件 32 | 33 | 34 | 头文件 35 | 36 | 37 | 头文件 38 | 39 | 40 | 头文件 41 | 42 | 43 | 头文件 44 | 45 | 46 | Socket 47 | 48 | 49 | ConnectPLC 50 | 51 | 52 | OmronFins 53 | 54 | 55 | 头文件 56 | 57 | 58 | 头文件 59 | 60 | 61 | 头文件 62 | 63 | 64 | 65 | 66 | 源文件 67 | 68 | 69 | 源文件 70 | 71 | 72 | 源文件 73 | 74 | 75 | Socket 76 | 77 | 78 | ConnectPLC 79 | 80 | 81 | OmronFins 82 | 83 | 84 | 85 | 86 | 资源文件 87 | 88 | 89 | 90 | 91 | 资源文件 92 | 93 | 94 | 95 | 96 | 资源文件 97 | 98 | 99 | -------------------------------------------------------------------------------- /OmronFinsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/OmronFinsDlg.cpp -------------------------------------------------------------------------------- /OmronFinsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/OmronFinsDlg.h -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- 1 | ================================================================================ 2 | MICROSOFT 基础类库 : OmronFins 项目概述 3 | =============================================================================== 4 | 5 | 应用程序向导已为您创建了此 OmronFins 应用程序。此应用程序不仅演示 Microsoft 基础类的基本使用方法,还可作为您编写应用程序的起点。 6 | 7 | 本文件概要介绍组成 OmronFins 应用程序的每个文件的内容。 8 | 9 | OmronFins.vcxproj 10 | 这是使用应用程序向导生成的 VC++ 项目的主项目文件,其中包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。 11 | 12 | OmronFins.vcxproj.filters 13 | 这是使用“应用程序向导”生成的 VC++ 项目筛选器文件。它包含有关项目文件与筛选器之间的关联信息。在 IDE 中,通过这种关联,在特定节点下以分组形式显示具有相似扩展名的文件。例如,“.cpp”文件与“源文件”筛选器关联。 14 | 15 | OmronFins.h 16 | 这是应用程序的主头文件。 17 | 其中包括其他项目特定的标头(包括 Resource.h),并声明 COmronFinsApp 应用程序类。 18 | 19 | OmronFins.cpp 20 | 这是包含应用程序类 COmronFinsApp 的主应用程序源文件。 21 | 22 | OmronFins.rc 23 | 这是程序使用的所有 Microsoft Windows 资源的列表。它包括 RES 子目录中存储的图标、位图和光标。此文件可以直接在 Microsoft Visual C++ 中进行编辑。项目资源包含在 2052 中。 24 | 25 | res\OmronFins.ico 26 | 这是用作应用程序图标的图标文件。此图标包括在主资源文件 OmronFins.rc 中。 27 | 28 | res\OmronFins.rc2 29 | 此文件包含不在 Microsoft Visual C++ 中进行编辑的资源。您应该将不可由资源编辑器编辑的所有资源放在此文件中。 30 | 31 | 32 | ///////////////////////////////////////////////////////////////////////////// 33 | 34 | 应用程序向导创建一个对话框类: 35 | 36 | OmronFinsDlg.h、OmronFinsDlg.cpp - 对话框 37 | 这些文件包含 COmronFinsDlg 类。此类定义应用程序的主对话框的行为。对话框模板包含在 OmronFins.rc 中,该文件可以在 Microsoft Visual C++ 中编辑。 38 | 39 | ///////////////////////////////////////////////////////////////////////////// 40 | 41 | 其他功能: 42 | 43 | ActiveX 控件 44 | 该应用程序包含对使用 ActiveX 控件的支持。 45 | 46 | ///////////////////////////////////////////////////////////////////////////// 47 | 48 | 其他标准文件: 49 | 50 | StdAfx.h, StdAfx.cpp 51 | 这些文件用于生成名为 OmronFins.pch 的预编译头 (PCH) 文件和名为 StdAfx.obj 的预编译类型文件。 52 | 53 | Resource.h 54 | 这是标准头文件,可用于定义新的资源 ID。Microsoft Visual C++ 将读取并更新此文件。 55 | 56 | OmronFins.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 | -------------------------------------------------------------------------------- /Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Socket.cpp -------------------------------------------------------------------------------- /Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Socket.h -------------------------------------------------------------------------------- /Struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/Struct.h -------------------------------------------------------------------------------- /res/OmronFins.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/res/OmronFins.ico -------------------------------------------------------------------------------- /res/OmronFins.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/res/OmronFins.rc2 -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/resource.h -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/stdafx.cpp -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrHKing/OmronFins/4870ad6e63786f6248db6c0dc37056bb7f69c87b/targetver.h --------------------------------------------------------------------------------