├── LICENSE ├── README.md ├── images ├── architecture.png ├── logo.png └── screenshot.png ├── plc-profiles ├── ABB PM554-TP-ETH │ └── abb-fingerprint-nmap ├── Allen-Bradley MicroLogix 1100 │ ├── MicroLogix-1100-website.zip │ └── micrologix-1100-nmap-fingerprint ├── Siemens S7-1200 │ ├── S7-1200-website.zip │ ├── s7-1200-nmap-fingerprint.txt │ └── s7-1200-snmp-mib.txt ├── Siemens S7-1500 │ ├── s7-1500-nmap-fingerprint.txt │ └── s7-1500-snmp-mib.txt └── Siemens S7-300 │ ├── S7-300-snmp-mib.txt │ ├── S7-300-website.zip │ └── s7-300-nmap-fingerprint.txt ├── profiler.py └── snap7 ├── HISTORY.txt ├── LabVIEW ├── Examples │ ├── Client │ │ ├── Block-Down-Upload.vi │ │ ├── BlockDel.vi │ │ ├── BlockInfo.vi │ │ ├── BlockUpload.vi │ │ ├── DBFill.vi │ │ ├── DBGet.vi │ │ ├── Directory.vi │ │ ├── GetSetParam.vi │ │ ├── Password.vi │ │ ├── PlcDateTime.vi │ │ ├── PlcInfo.vi │ │ ├── ReadArea.vi │ │ ├── ReadSZL.vi │ │ └── RunStop.vi │ ├── Partner │ │ ├── APartner.vi │ │ └── PPartner.vi │ ├── Server │ │ └── ServerDemo.vi │ ├── Snap7Examples.aliases │ ├── Snap7Examples.lvlps │ └── Snap7Examples.lvproj ├── LabVIEW_32.bat ├── LabVIEW_64.bat ├── lib │ ├── CliABRead.vi │ ├── CliABWrite.vi │ ├── CliCTRead.vi │ ├── CliCTWrite.vi │ ├── CliClearSessionPassword.vi │ ├── CliColdStart.vi │ ├── CliCompress.vi │ ├── CliConnect.vi │ ├── CliConnectTo.vi │ ├── CliCopyRamToRom.vi │ ├── CliCreate.vi │ ├── CliDBFill.vi │ ├── CliDBGet.vi │ ├── CliDBRead.vi │ ├── CliDBWrite.vi │ ├── CliDelete.vi │ ├── CliDestroy.vi │ ├── CliDownload.vi │ ├── CliEBRead.vi │ ├── CliEBWrite.vi │ ├── CliErrorText.vi │ ├── CliFullUpload.vi │ ├── CliGetAGBlockInfo.vi │ ├── CliGetCpInfo.vi │ ├── CliGetCpuInfo.vi │ ├── CliGetExecTime.vi │ ├── CliGetLastError.vi │ ├── CliGetOrderCode.vi │ ├── CliGetPGBlockInfo.vi │ ├── CliGetParam.vi │ ├── CliGetPduLength.vi │ ├── CliGetPlcDateTime.vi │ ├── CliGetPlcStatus.vi │ ├── CliGetProtection.vi │ ├── CliHotStart.vi │ ├── CliIsoExchangeBuffer.vi │ ├── CliListBlocks.vi │ ├── CliListBlocksOfType.vi │ ├── CliMBRead.vi │ ├── CliMBWrite.vi │ ├── CliReadArea.vi │ ├── CliReadSZL.vi │ ├── CliReadSZLList.vi │ ├── CliSetConnectionParams.vi │ ├── CliSetConnectionType.vi │ ├── CliSetParam.vi │ ├── CliSetPlcDateTime.vi │ ├── CliSetPlcSystemDateTime.vi │ ├── CliSetSessionPassword.vi │ ├── CliStop.vi │ ├── CliTMRead.vi │ ├── CliTMWrite.vi │ ├── CliUpload.vi │ ├── CliWriteArea.vi │ ├── ParBRecv.vi │ ├── ParBSend.vi │ ├── ParCreate.vi │ ├── ParDestroy.vi │ ├── ParErrorText.vi │ ├── ParGetLastError.vi │ ├── ParGetParam.vi │ ├── ParGetStat.vi │ ├── ParGetStatus.vi │ ├── ParGetTimes.vi │ ├── ParSetParam.vi │ ├── ParStart.vi │ ├── ParStartTo.vi │ ├── ParStop.vi │ ├── Snap7.lvlib │ ├── SrvClearEvents.vi │ ├── SrvCreate.vi │ ├── SrvDestroy.vi │ ├── SrvErrorText.vi │ ├── SrvEventText.vi │ ├── SrvGetMask.vi │ ├── SrvGetParam.vi │ ├── SrvGetStatus.vi │ ├── SrvPickEvent.vi │ ├── SrvRegisterArea.vi │ ├── SrvSetCpuStatus.vi │ ├── SrvSetMask.vi │ ├── SrvSetParam.vi │ ├── SrvStart.vi │ ├── SrvStartTo.vi │ ├── SrvStop.vi │ ├── SrvUnregisterArea.vi │ ├── win32 │ │ └── lv_snap7.def │ ├── win64 │ │ └── lv_snap7.def │ └── windows │ │ └── lv_snap7.def ├── lib_build │ ├── MinGW32 │ │ ├── Makefile │ │ └── make.bat │ ├── MinGW64 │ │ ├── Makefile │ │ └── make.bat │ ├── VS2012_LV │ │ ├── VS2012_LV.sln │ │ ├── VS2012_LV.v11.suo │ │ └── VS2012_LV │ │ │ ├── VS2012_LV.vcxproj │ │ │ └── VS2012_LV.vcxproj.filters │ └── VS2013_LV │ │ ├── VS2013_LV.sln │ │ ├── VS2013_LV.suo │ │ ├── VS2013_LV.v12.suo │ │ └── VS2013_LV │ │ ├── VS2013_LV.vcxproj │ │ └── VS2013_LV.vcxproj.filters └── lib_src │ ├── lv_snap7.cpp │ ├── lv_snap7.def │ ├── lv_snap7.h │ ├── snap7.cpp │ └── snap7.h ├── README.md ├── README.txt ├── build ├── README.txt ├── bin │ ├── Legacy │ │ ├── win32 │ │ │ ├── snap7.def │ │ │ └── snap7.lib │ │ └── win64 │ │ │ ├── snap7.def │ │ │ └── snap7.lib │ ├── README.txt │ ├── i386-linux │ │ └── libsnap7.so │ ├── win32 │ │ └── snap7.lib │ ├── win64 │ │ └── snap7.lib │ └── x86_64-linux │ │ ├── libsnap7.so-1200 │ │ ├── libsnap7.so-1500 │ │ └── libsnap7.so-300 ├── osx │ ├── common.mk │ ├── i386_osx.mk │ └── x86_64_osx.mk ├── temp │ ├── README.txt │ ├── Win32 │ │ └── VS2013.tlog │ │ │ └── VS2013.lastbuildstate │ ├── Win64 │ │ └── VS2013.tlog │ │ │ └── VS2013.lastbuildstate │ ├── i386 │ │ ├── core_s7_client.o │ │ ├── core_s7_isotcp.o │ │ ├── core_s7_micro_client.o │ │ ├── core_s7_partner.o │ │ ├── core_s7_peer.o │ │ ├── core_s7_server.o │ │ ├── core_s7_text.o │ │ ├── lib_snap7_libmain.o │ │ ├── sys_snap_msgsock.o │ │ ├── sys_snap_sysutils.o │ │ ├── sys_snap_tcpsrvr.o │ │ └── sys_snap_threads.o │ └── x86_64 │ │ ├── core_s7_client.o │ │ ├── core_s7_isotcp.o │ │ ├── core_s7_micro_client.o │ │ ├── core_s7_partner.o │ │ ├── core_s7_peer.o │ │ ├── core_s7_server.o │ │ ├── core_s7_text.o │ │ ├── lib_snap7_libmain.o │ │ ├── sys_snap_msgsock.o │ │ ├── sys_snap_sysutils.o │ │ ├── sys_snap_tcpsrvr.o │ │ └── sys_snap_threads.o ├── unix │ ├── README.txt │ ├── arm_v6_linux.mk │ ├── arm_v7_linux.mk │ ├── common.mk │ ├── i386_bsd.mk │ ├── i386_linux.mk │ ├── i386_solaris_cc.mk │ ├── i386_solaris_gcc.mk │ ├── mips_linux.mk │ ├── x86_64_bsd.mk │ ├── x86_64_linux.mk │ ├── x86_64_solaris_cc.mk │ └── x86_64_solaris_gcc.mk └── windows │ ├── MinGW32 │ ├── Makefile │ ├── README.txt │ └── make.bat │ ├── MinGW64 │ ├── Makefile │ ├── README.txt │ └── make.bat │ ├── README.txt │ ├── VS2008 │ ├── VS2008.sln │ ├── VS2008.suo │ └── VS2008.vcproj │ ├── VS2010 │ ├── VS2010.sln │ ├── VS2010.suo │ ├── VS2010.vcxproj │ └── VS2010.vcxproj.filters │ ├── VS2012 │ ├── VS2012.sln │ ├── VS2012.v11.suo │ ├── VS2012.vcxproj │ └── VS2012.vcxproj.filters │ ├── VS2013 │ ├── VS2013.sln │ ├── VS2013.v12.suo │ ├── VS2013.vcxproj │ └── VS2013.vcxproj.filters │ └── updatelib.bat ├── doc └── Snap7-refman.pdf ├── examples ├── Step 7 │ └── Snap7 │ │ ├── ApiLog │ │ ├── LogIDs │ │ ├── Step7Bas.ver │ │ ├── Types │ │ └── lock │ │ ├── CONN │ │ ├── LINKVL.dbf │ │ ├── LOCKVL.LCK │ │ ├── VERBLIST.PRO │ │ ├── VERBTAB.DBF │ │ ├── VERBTAB.MDX │ │ ├── VLTAB53.DBF │ │ └── VLTAB53.MDX │ │ ├── Global │ │ ├── 141099_4.txt │ │ ├── 141099_4_dp_asi.txt │ │ ├── Font_1 │ │ ├── Font_2 │ │ ├── Language │ │ ├── S7hCompressedMetadata.cmf │ │ ├── S7hMetaData.umf │ │ ├── colorder.dat │ │ ├── colwidth.dat │ │ ├── s7netpro.npa │ │ └── s7netpro.wnd │ │ ├── S7NFREMX │ │ └── S7NFREMX.tab │ │ ├── S7Netze │ │ ├── S7NONFGX.id │ │ ├── S7NONFGX.lnk │ │ └── S7NONFGX.tab │ │ ├── Snap7.S7S │ │ ├── Snap7.s7p │ │ ├── YDBs │ │ ├── 8299 │ │ │ ├── SYMLIST.DBF │ │ │ ├── SYMLIST.MDX │ │ │ └── Symlist.id │ │ ├── SYMLISTS.DBF │ │ ├── SYMLISTS.MDX │ │ └── YLNKLIST.DBF │ │ ├── hOmSave7 │ │ ├── S7HK31AX │ │ │ ├── HATTARY1.DBF │ │ │ ├── HATTARY1.DBT │ │ │ ├── HATTARY1.MDX │ │ │ ├── HATTRIB1.DBF │ │ │ ├── HATTRIB1.MDX │ │ │ ├── HATTRME1.DBF │ │ │ ├── HATTRME1.DBT │ │ │ ├── HATTRME1.MDX │ │ │ ├── HLASTID2.DBF │ │ │ ├── HOBJECT1.DBF │ │ │ ├── HOBJECT1.MDX │ │ │ ├── HRELATI1.DBF │ │ │ ├── HRELATI1.MDX │ │ │ └── hLockID1 │ │ ├── s7hdevnx │ │ │ ├── HATTARY1.DBF │ │ │ ├── HATTARY1.DBT │ │ │ ├── HATTARY1.MDX │ │ │ ├── HATTRIB1.DBF │ │ │ ├── HATTRIB1.MDX │ │ │ ├── HATTRME1.DBF │ │ │ ├── HATTRME1.DBT │ │ │ ├── HATTRME1.MDX │ │ │ ├── HLASTID2.DBF │ │ │ ├── HOBJECT1.DBF │ │ │ ├── HOBJECT1.MDX │ │ │ ├── HRELATI1.DBF │ │ │ ├── HRELATI1.MDX │ │ │ └── hLockID1 │ │ ├── s7hkdmax │ │ │ ├── HATTARY1.DBF │ │ │ ├── HATTARY1.DBT │ │ │ ├── HATTARY1.MDX │ │ │ ├── HATTRIB1.DBF │ │ │ ├── HATTRIB1.MDX │ │ │ ├── HATTRME1.DBF │ │ │ ├── HATTRME1.DBT │ │ │ ├── HATTRME1.MDX │ │ │ ├── HLASTID2.DBF │ │ │ ├── HOBJECT1.DBF │ │ │ ├── HOBJECT1.MDX │ │ │ ├── HRELATI1.DBF │ │ │ ├── HRELATI1.MDX │ │ │ └── hLockID1 │ │ ├── s7hss30x │ │ │ ├── HATTARY1.DBF │ │ │ ├── HATTARY1.DBT │ │ │ ├── HATTARY1.MDX │ │ │ ├── HATTRIB1.DBF │ │ │ ├── HATTRIB1.MDX │ │ │ ├── HATTRME1.DBF │ │ │ ├── HATTRME1.DBT │ │ │ ├── HATTRME1.MDX │ │ │ ├── HLASTID2.DBF │ │ │ ├── HOBJECT1.DBF │ │ │ ├── HOBJECT1.MDX │ │ │ ├── HRELATI1.DBF │ │ │ ├── HRELATI1.MDX │ │ │ └── hLockID1 │ │ ├── s7hssiox │ │ │ ├── HATTARY1.DBF │ │ │ ├── HATTARY1.DBT │ │ │ ├── HATTARY1.MDX │ │ │ ├── HATTRIB1.DBF │ │ │ ├── HATTRIB1.MDX │ │ │ ├── HATTRME1.DBF │ │ │ ├── HATTRME1.DBT │ │ │ ├── HATTRME1.MDX │ │ │ ├── HLASTID2.DBF │ │ │ ├── HOBJECT1.DBF │ │ │ ├── HOBJECT1.MDX │ │ │ ├── HRELATI1.DBF │ │ │ ├── HRELATI1.MDX │ │ │ └── hLockID1 │ │ └── s7hstatx │ │ │ ├── 1.s7h │ │ │ ├── 4.s7h │ │ │ ├── HADDRES3.DBF │ │ │ ├── HADDRES3.DBT │ │ │ ├── HADDRES3.MDX │ │ │ ├── HATTARY1.DBF │ │ │ ├── HATTARY1.DBT │ │ │ ├── HATTARY1.MDX │ │ │ ├── HATTRIB1.DBF │ │ │ ├── HATTRIB1.MDX │ │ │ ├── HATTRME1.DBF │ │ │ ├── HATTRME1.DBT │ │ │ ├── HATTRME1.MDX │ │ │ ├── HLASTID2.DBF │ │ │ ├── HOBJECT1.DBF │ │ │ ├── HOBJECT1.MDX │ │ │ ├── HRELATI1.DBF │ │ │ ├── HRELATI1.MDX │ │ │ └── hLockID1 │ │ ├── hrs │ │ ├── S7RESOFF.DBF │ │ ├── S7RESOFF.MDX │ │ ├── S7RESONL.DBF │ │ ├── S7RESONL.MDX │ │ ├── lastrsf.res │ │ ├── lastrsn.res │ │ ├── linkhrs.lnk │ │ ├── rsflock.res │ │ └── rsnlock.res │ │ ├── link.lnk │ │ ├── meldeom │ │ ├── TEXTLNK.DBF │ │ ├── TEXTLNK.MDX │ │ ├── TEXTOM.DBF │ │ ├── TEXTOM.DBT │ │ ├── TEXTOM.MDX │ │ ├── meldvers.dat │ │ ├── textom.hid │ │ └── textom.lck │ │ ├── ombstx │ │ ├── offline │ │ │ ├── 00000002 │ │ │ │ ├── BAUSTEIN.DBF │ │ │ │ ├── BAUSTEIN.DBT │ │ │ │ ├── BAUSTEIN.MDX │ │ │ │ ├── SUBBLK.DBF │ │ │ │ ├── SUBBLK.DBT │ │ │ │ ├── baustein.id │ │ │ │ ├── baustein.lck │ │ │ │ ├── links.lnk │ │ │ │ └── usfapx.ini │ │ │ ├── BSTCNTOF.DBF │ │ │ ├── BSTCNTOF.MDX │ │ │ ├── bstcntof.id │ │ │ └── bstcntof.lck │ │ └── online │ │ │ ├── BSTCNTON.DBF │ │ │ ├── BSTCNTON.MDX │ │ │ ├── bstcnton.id │ │ │ ├── bstcnton.lck │ │ │ └── links.lnk │ │ ├── omgd │ │ ├── S7GD.DBF │ │ ├── S7GD.DBT │ │ ├── S7GD.MDX │ │ ├── gdflock.res │ │ ├── lastgd │ │ └── linkgd │ │ │ └── 00000001.DBF │ │ ├── pgs │ │ ├── S7GS.DBF │ │ ├── S7GS.MDX │ │ ├── gsflock.res │ │ ├── lastgs │ │ └── linkgs │ │ │ └── 00000001.DBF │ │ ├── s7asrcom │ │ ├── 00000001 │ │ │ ├── S7CONTAI.DBF │ │ │ ├── S7CONTAI.MDX │ │ │ ├── S7LINKS.DBF │ │ │ └── s7source.lck │ │ ├── S7CNTREF.DBF │ │ ├── S7CNTREF.MDX │ │ ├── s7cntID.src │ │ └── s7contai.lck │ │ ├── s7extref │ │ ├── s7pltref.lck │ │ └── s7pltref.xml │ │ ├── s7netpro.npa │ │ └── sdb │ │ ├── 00000002 │ │ ├── 00000037.PG │ │ ├── 00000038.PG │ │ ├── 00000039.PG │ │ ├── 0000003a.PG │ │ ├── 0000003b.PG │ │ ├── 0000003c.PG │ │ ├── 0000003d.PG │ │ ├── 0000003e.PG │ │ ├── 0000003f.PG │ │ ├── link │ │ │ └── 00000002.DBF │ │ └── list │ │ │ ├── 00000002.DBF │ │ │ └── 00000002.MDX │ │ ├── S0112001.DBF │ │ ├── S0112001.MDX │ │ ├── sdblast.id │ │ └── sdblock.lck ├── cpp │ ├── apartner.cpp │ ├── arm_v6-linux │ │ ├── apartner │ │ ├── client │ │ ├── makefile │ │ ├── ppartner │ │ └── server │ ├── arm_v7-linux │ │ ├── README.txt │ │ └── makefile │ ├── client.cpp │ ├── i386-bsd │ │ ├── README.txt │ │ └── makefile │ ├── i386-linux │ │ ├── README.txt │ │ └── makefile │ ├── i386-osx │ │ └── makefile │ ├── i386-solaris │ │ ├── README.txt │ │ └── makefile │ ├── ppartner.cpp │ ├── server-backup.cpp │ ├── server.cpp │ ├── server_v10.cpp │ ├── snap7.cpp │ ├── snap7.h │ ├── srv_resourceless.cpp │ ├── win32 │ │ ├── Makefile │ │ └── make.bat │ ├── win64 │ │ ├── Makefile │ │ ├── README.txt │ │ ├── make.bat │ │ └── snap7.lib │ ├── x86_64-bsd │ │ ├── README.txt │ │ └── makefile │ ├── x86_64-linux │ │ ├── README.txt │ │ ├── apartner │ │ ├── blockdump.mc7 │ │ ├── blockdump_Sat Apr 25 14:16:29 2020 │ │ ├── blockdump_Tue Apr 28 09:33:06 2020 │ │ ├── blockdump_Tue Apr 28 09:33:35 2020 │ │ ├── blockdump_Tue Apr 28 09:34:03 2020 │ │ ├── blockdump_Tue Apr 28 09:34:15 2020 │ │ ├── blockdump_Tue Apr 28 09:38:39 2020 │ │ ├── blockdump_Tue Apr 28 09:38:46 2020 │ │ ├── blockdump_Tue Apr 28 09:42:20 2020 │ │ ├── blockdump_Tue Apr 28 09:42:26 2020 │ │ ├── blockdump_Tue Apr 28 09:42:31 2020 │ │ ├── captured │ │ │ └── blockdump.mc7 │ │ ├── client │ │ ├── makefile │ │ ├── ppartner │ │ ├── s7300.snmpwalk │ │ ├── s7comm.log │ │ ├── server │ │ ├── server_old │ │ └── srv_resourceless │ ├── x86_64-osx │ │ └── makefile │ └── x86_64-solaris │ │ ├── README.txt │ │ └── makefile ├── dot.net │ ├── APartner.cs │ ├── Client.cs │ ├── PPartner.cs │ ├── README.txt │ ├── Server.cs │ ├── SrvResourceless.cs │ ├── WinConsole │ │ ├── APartner │ │ │ ├── APartner.cs │ │ │ ├── APartner.csproj │ │ │ ├── App.config │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── obj │ │ │ │ ├── x64 │ │ │ │ │ └── Debug │ │ │ │ │ │ ├── APartner.csproj.FileListAbsolute.txt │ │ │ │ │ │ ├── APartner.csprojResolveAssemblyReference.cache │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ └── x86 │ │ │ │ │ └── Debug │ │ │ │ │ ├── APartner.csproj.FileListAbsolute.txt │ │ │ │ │ ├── APartner.csprojResolveAssemblyReference.cache │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ └── snap7.net.cs │ │ ├── Bin │ │ │ ├── x64 │ │ │ │ ├── APartner.exe.config │ │ │ │ ├── APartner.vshost.exe.config │ │ │ │ ├── Client.exe.config │ │ │ │ ├── Client.vshost.exe.config │ │ │ │ ├── Client.vshost.exe.manifest │ │ │ │ ├── PPartner.exe.config │ │ │ │ ├── PPartner.vshost.exe.config │ │ │ │ ├── Server.exe.config │ │ │ │ ├── Server.vshost.exe.config │ │ │ │ └── SrvResourceless.exe.config │ │ │ └── x86 │ │ │ │ ├── APartner.exe.config │ │ │ │ ├── APartner.vshost.exe.config │ │ │ │ ├── Client.exe.config │ │ │ │ ├── Client.vshost.exe.config │ │ │ │ ├── Client.vshost.exe.manifest │ │ │ │ ├── PPartner.exe.config │ │ │ │ ├── PPartner.vshost.exe.config │ │ │ │ ├── Server.exe.config │ │ │ │ ├── Server.vshost.exe.config │ │ │ │ ├── SrvResourceless.exe.config │ │ │ │ └── SrvResourceless.vshost.exe.config │ │ ├── Client │ │ │ ├── App.config │ │ │ ├── Client.cs │ │ │ ├── Client.csproj │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── obj │ │ │ │ ├── x64 │ │ │ │ │ └── Debug │ │ │ │ │ │ ├── Client.csproj.FileListAbsolute.txt │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ └── x86 │ │ │ │ │ └── Debug │ │ │ │ │ ├── Client.csproj.FileListAbsolute.txt │ │ │ │ │ ├── Client.csprojResolveAssemblyReference.cache │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ └── snap7.net.cs │ │ ├── PPartner │ │ │ ├── App.config │ │ │ ├── PPartner.cs │ │ │ ├── PPartner.csproj │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── obj │ │ │ │ ├── x64 │ │ │ │ │ └── Debug │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ ├── PPartner.csproj.FileListAbsolute.txt │ │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ └── x86 │ │ │ │ │ └── Debug │ │ │ │ │ ├── PPartner.csproj.FileListAbsolute.txt │ │ │ │ │ ├── PPartner.csprojResolveAssemblyReference.cache │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ └── snap7.net.cs │ │ ├── Server │ │ │ ├── App.config │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Server.cs │ │ │ ├── Server.csproj │ │ │ ├── obj │ │ │ │ ├── x64 │ │ │ │ │ └── Debug │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ ├── Server.csproj.FileListAbsolute.txt │ │ │ │ │ │ ├── Server.csprojResolveAssemblyReference.cache │ │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ └── x86 │ │ │ │ │ └── Debug │ │ │ │ │ ├── Server.csproj.FileListAbsolute.txt │ │ │ │ │ ├── Server.csprojResolveAssemblyReference.cache │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ └── snap7.net.cs │ │ ├── Snap7Console.sln │ │ ├── Snap7Console.v12.suo │ │ └── SrvResourceless │ │ │ ├── App.config │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── SrvResourceless.cs │ │ │ ├── SrvResourceless.csproj │ │ │ ├── obj │ │ │ ├── x64 │ │ │ │ └── Debug │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ ├── SrvResourceless.csproj.FileListAbsolute.txt │ │ │ │ │ ├── SrvResourceless.csprojResolveAssemblyReference.cache │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ └── x86 │ │ │ │ └── Debug │ │ │ │ ├── SrvResourceless.csproj.FileListAbsolute.txt │ │ │ │ ├── SrvResourceless.csprojResolveAssemblyReference.cache │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ └── snap7.net.cs │ ├── WinForm │ │ ├── BuildSnap7Assembly │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Snap7.net.csproj │ │ │ ├── Snap7.sln │ │ │ ├── Snap7.suo │ │ │ ├── Snap7.v12.suo │ │ │ └── obj │ │ │ │ ├── Debug │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ └── Snap7.net.csproj.FileListAbsolute.txt │ │ │ │ ├── Release │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── Snap7.net.csproj.FileListAbsolute.txt │ │ │ │ └── Snap7.net.csprojResolveAssemblyReference.cache │ │ │ │ ├── x64 │ │ │ │ ├── Debug │ │ │ │ │ └── Snap7.net.csproj.FileListAbsolute.txt │ │ │ │ └── Release │ │ │ │ │ └── Snap7.net.csproj.FileListAbsolute.txt │ │ │ │ └── x86 │ │ │ │ ├── Debug │ │ │ │ └── Snap7.net.csproj.FileListAbsolute.txt │ │ │ │ └── Release │ │ │ │ └── Snap7.net.csproj.FileListAbsolute.txt │ │ ├── CSharp │ │ │ ├── Bin │ │ │ │ ├── x64 │ │ │ │ │ ├── CSClient.vshost.exe.manifest │ │ │ │ │ ├── CSClientMultiRead.exe.config │ │ │ │ │ ├── CSClientMultiRead.vshost.exe.config │ │ │ │ │ ├── CSClientMultiRead.vshost.exe.manifest │ │ │ │ │ └── CSServer.exe.config │ │ │ │ └── x86 │ │ │ │ │ ├── CSClient.vshost.exe.manifest │ │ │ │ │ ├── CSClientMultiRead.exe.config │ │ │ │ │ ├── CSClientMultiRead.vshost.exe.config │ │ │ │ │ ├── CSClientMultiRead.vshost.exe.manifest │ │ │ │ │ ├── CSServer.exe.config │ │ │ │ │ ├── CSServer.vshost.exe.config │ │ │ │ │ └── CSServer.vshost.exe.manifest │ │ │ ├── CSClient │ │ │ │ ├── CSClient.csproj │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── obj │ │ │ │ │ ├── x64 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── CSClient.MainForm.resources │ │ │ │ │ │ │ ├── CSClient.Properties.Resources.resources │ │ │ │ │ │ │ ├── CSClient.csproj.FileListAbsolute.txt │ │ │ │ │ │ │ ├── CSClient.csproj.GenerateResource.Cache │ │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ ├── CSClient.MainForm.resources │ │ │ │ │ │ │ ├── CSClient.Properties.Resources.resources │ │ │ │ │ │ │ ├── CSClient.csproj.FileListAbsolute.txt │ │ │ │ │ │ │ ├── CSClient.csproj.GenerateResource.Cache │ │ │ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── CSClient.MainForm.resources │ │ │ │ │ │ ├── CSClient.Properties.Resources.resources │ │ │ │ │ │ ├── CSClient.csproj.FileListAbsolute.txt │ │ │ │ │ │ ├── CSClient.csproj.GenerateResource.Cache │ │ │ │ │ │ ├── CSClient.csprojResolveAssemblyReference.cache │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ └── Release │ │ │ │ │ │ ├── CSClient.MainForm.resources │ │ │ │ │ │ ├── CSClient.Properties.Resources.resources │ │ │ │ │ │ ├── CSClient.csproj.FileListAbsolute.txt │ │ │ │ │ │ ├── CSClient.csproj.GenerateResource.Cache │ │ │ │ │ │ ├── CSClient.csprojResolveAssemblyReference.cache │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ └── snap7.net.cs │ │ │ ├── CSClientMultiRead │ │ │ │ ├── App.config │ │ │ │ ├── CSClientMultiRead.csproj │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── obj │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── CSClientMultiRead.Form1.resources │ │ │ │ │ │ ├── CSClientMultiRead.Properties.Resources.resources │ │ │ │ │ │ ├── CSClientMultiRead.csproj.FileListAbsolute.txt │ │ │ │ │ │ ├── CSClientMultiRead.csproj.GenerateResource.Cache │ │ │ │ │ │ ├── CSClientMultiRead.csprojResolveAssemblyReference.cache │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ │ ├── Release │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ │ ├── x64 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── CSClientMultiRead.Form1.resources │ │ │ │ │ │ │ ├── CSClientMultiRead.Properties.Resources.resources │ │ │ │ │ │ │ ├── CSClientMultiRead.csproj.FileListAbsolute.txt │ │ │ │ │ │ │ ├── CSClientMultiRead.csproj.GenerateResource.Cache │ │ │ │ │ │ │ ├── CSClientMultiRead.csprojResolveAssemblyReference.cache │ │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ ├── CSClientMultiRead.Form1.resources │ │ │ │ │ │ │ ├── CSClientMultiRead.Properties.Resources.resources │ │ │ │ │ │ │ ├── CSClientMultiRead.csproj.FileListAbsolute.txt │ │ │ │ │ │ │ ├── CSClientMultiRead.csproj.GenerateResource.Cache │ │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── CSClientMultiRead.Form1.resources │ │ │ │ │ │ ├── CSClientMultiRead.Properties.Resources.resources │ │ │ │ │ │ ├── CSClientMultiRead.csproj.FileListAbsolute.txt │ │ │ │ │ │ ├── CSClientMultiRead.csproj.GenerateResource.Cache │ │ │ │ │ │ ├── CSClientMultiRead.csprojResolveAssemblyReference.cache │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ │ │ └── Release │ │ │ │ │ │ ├── CSClientMultiRead.Form1.resources │ │ │ │ │ │ ├── CSClientMultiRead.Properties.Resources.resources │ │ │ │ │ │ ├── CSClientMultiRead.csproj.FileListAbsolute.txt │ │ │ │ │ │ ├── CSClientMultiRead.csproj.GenerateResource.Cache │ │ │ │ │ │ ├── CSClientMultiRead.csprojResolveAssemblyReference.cache │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ └── snap7.net.cs │ │ │ ├── CSServer │ │ │ │ ├── App.config │ │ │ │ ├── CSServer.csproj │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── MainForm.Designer.cs │ │ │ │ ├── MainForm.cs │ │ │ │ ├── MainForm.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── obj │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ │ ├── Release │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ │ ├── x64 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ ├── CSServer.MainForm.resources │ │ │ │ │ │ │ ├── CSServer.Properties.Resources.resources │ │ │ │ │ │ │ ├── CSServer.csproj.FileListAbsolute.txt │ │ │ │ │ │ │ ├── CSServer.csproj.GenerateResource.Cache │ │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ │ │ └── Release │ │ │ │ │ │ ├── CSServer.MainForm.resources │ │ │ │ │ │ ├── CSServer.Properties.Resources.resources │ │ │ │ │ │ ├── CSServer.csproj.FileListAbsolute.txt │ │ │ │ │ │ ├── CSServer.csproj.GenerateResource.Cache │ │ │ │ │ │ ├── CSServer.csprojResolveAssemblyReference.cache │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ │ └── snap7.net.cs │ │ │ ├── CSharp.sln │ │ │ ├── CSharp.suo │ │ │ ├── CSharp.v11.suo │ │ │ └── CSharp.v12.suo │ │ ├── READ-BEFORE-EMAIL-ME.txt │ │ ├── VB │ │ │ ├── VBClient.sln │ │ │ ├── VBClient.suo │ │ │ ├── VBClient.v12.suo │ │ │ └── VBClient │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.vb │ │ │ │ ├── Form1.resx │ │ │ │ ├── Form1.vb │ │ │ │ ├── My Project │ │ │ │ ├── Application.Designer.vb │ │ │ │ ├── Application.myapp │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Resources.Designer.vb │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.vb │ │ │ │ └── Settings.settings │ │ │ │ ├── VBClient.vbproj │ │ │ │ ├── bin │ │ │ │ └── x86 │ │ │ │ │ ├── VBClient.vshost.exe.manifest │ │ │ │ │ └── VBClient.xml │ │ │ │ └── obj │ │ │ │ ├── x64 │ │ │ │ ├── Debug │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ ├── VBClient.MainForm.resources │ │ │ │ │ ├── VBClient.Resources.resources │ │ │ │ │ ├── VBClient.vbproj.FileListAbsolute.txt │ │ │ │ │ └── VBClient.vbproj.GenerateResource.Cache │ │ │ │ └── Release │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ ├── VBClient.MainForm.resources │ │ │ │ │ ├── VBClient.Resources.resources │ │ │ │ │ ├── VBClient.vbproj.FileListAbsolute.txt │ │ │ │ │ └── VBClient.vbproj.GenerateResource.Cache │ │ │ │ └── x86 │ │ │ │ ├── Debug │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── VBClient.MainForm.resources │ │ │ │ ├── VBClient.Resources.resources │ │ │ │ ├── VBClient.vbproj.FileListAbsolute.txt │ │ │ │ ├── VBClient.vbproj.GenerateResource.Cache │ │ │ │ └── VBClient.xml │ │ │ │ └── Release │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── ResolveAssemblyReference.cache │ │ │ │ ├── VBClient.MainForm.resources │ │ │ │ ├── VBClient.Resources.resources │ │ │ │ ├── VBClient.vbproj.FileListAbsolute.txt │ │ │ │ ├── VBClient.vbproj.GenerateResource.Cache │ │ │ │ ├── VBClient.vbprojResolveAssemblyReference.cache │ │ │ │ └── VBClient.xml │ │ └── VB_Mixed │ │ │ ├── Snap7.net │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Snap7.net.csproj │ │ │ └── obj │ │ │ │ ├── Debug │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ └── Snap7.net.csproj.FileListAbsolute.txt │ │ │ │ └── Release │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ └── Snap7.net.csproj.FileListAbsolute.txt │ │ │ ├── VBClient.sln │ │ │ ├── VBClient.suo │ │ │ ├── VBClient.v12.suo │ │ │ └── VBClient │ │ │ ├── App.config │ │ │ ├── Form1.Designer.vb │ │ │ ├── Form1.resx │ │ │ ├── Form1.vb │ │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ │ ├── VBClient.vbproj │ │ │ ├── bin │ │ │ ├── x64 │ │ │ │ └── VBClient.xml │ │ │ └── x86 │ │ │ │ └── VBClient.xml │ │ │ └── obj │ │ │ ├── x64 │ │ │ ├── Debug │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── VBClient.MainForm.resources │ │ │ │ ├── VBClient.Resources.resources │ │ │ │ ├── VBClient.vbproj.FileListAbsolute.txt │ │ │ │ ├── VBClient.vbproj.GenerateResource.Cache │ │ │ │ ├── VBClient.vbprojResolveAssemblyReference.cache │ │ │ │ └── VBClient.xml │ │ │ └── Release │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ └── x86 │ │ │ ├── Debug │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── ResolveAssemblyReference.cache │ │ │ ├── VBClient.MainForm.resources │ │ │ ├── VBClient.Resources.resources │ │ │ ├── VBClient.vbproj.FileListAbsolute.txt │ │ │ ├── VBClient.vbproj.GenerateResource.Cache │ │ │ ├── VBClient.vbprojResolveAssemblyReference.cache │ │ │ └── VBClient.xml │ │ │ └── Release │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── ResolveAssemblyReference.cache │ │ │ ├── VBClient.MainForm.resources │ │ │ ├── VBClient.Resources.resources │ │ │ ├── VBClient.vbproj.FileListAbsolute.txt │ │ │ └── VBClient.xml │ ├── clean-tmp.bat │ ├── mono │ │ ├── README.txt │ │ └── mono.sh │ └── snap7.net.cs ├── plain-c │ ├── apartner.c │ ├── arm_v6-linux │ │ └── makefile │ ├── arm_v7-linux │ │ ├── README.txt │ │ └── makefile │ ├── client.c │ ├── i386-bsd │ │ ├── README.txt │ │ └── makefile │ ├── i386-linux │ │ ├── README.txt │ │ └── makefile │ ├── i386-osx │ │ └── makefile │ ├── i386-solaris │ │ ├── README.txt │ │ └── makefile │ ├── ppartner.c │ ├── server.c │ ├── snap7.h │ ├── srv_resourceless.c │ ├── win32 │ │ ├── Makefile │ │ └── make.bat │ ├── win64 │ │ ├── Makefile │ │ ├── README.txt │ │ ├── make.bat │ │ └── snap7.lib │ ├── x86_64-bsd │ │ ├── README.txt │ │ └── makefile │ ├── x86_64-linux │ │ ├── README.txt │ │ └── makefile │ ├── x86_64-osx │ │ └── makefile │ └── x86_64-solaris │ │ ├── README.txt │ │ └── makefile ├── start_s7oiehsx_x64.bat ├── start_s7oiehsx_x86.bat ├── stop_s7oiehsx_x64.bat └── stop_s7oiehsx_x86.bat ├── gpl.txt ├── lgpl-3.0.txt ├── release ├── Windows │ ├── Legacy │ │ ├── README.txt │ │ ├── Win32 │ │ │ ├── snap7.def │ │ │ └── snap7.lib │ │ └── Win64 │ │ │ ├── snap7.def │ │ │ └── snap7.lib │ ├── Win32 │ │ └── snap7.lib │ └── Win64 │ │ └── snap7.lib ├── Wrappers │ ├── c-cpp │ │ ├── README.txt │ │ ├── snap7.cpp │ │ └── snap7.h │ ├── dot.net │ │ └── snap7.net.cs │ └── pascal │ │ └── snap7.pas └── deploy.html ├── rich-demos ├── Cubieboard2 │ ├── clientdemo.ico │ ├── clientdemo.lpi │ ├── clientdemo.lpr │ ├── clientdemo.lps │ ├── clientdemo.res │ ├── partnerdemo.ico │ ├── partnerdemo.lpi │ ├── partnerdemo.lpr │ ├── partnerdemo.lps │ ├── partnerdemo.res │ ├── serverdemo.ico │ ├── serverdemo.lpi │ ├── serverdemo.lpr │ ├── serverdemo.lps │ └── serverdemo.res ├── MainPartner.lfm ├── MainPartner.pas ├── Raspberry │ ├── bin │ │ ├── clientdemo │ │ ├── partnerdemo │ │ └── serverdemo │ ├── clientdemo.ico │ ├── clientdemo.lpi │ ├── clientdemo.lpr │ ├── clientdemo.lps │ ├── clientdemo.res │ ├── partnerdemo.ico │ ├── partnerdemo.lpi │ ├── partnerdemo.lpr │ ├── partnerdemo.lps │ ├── partnerdemo.res │ ├── serverdemo.ico │ ├── serverdemo.lpi │ ├── serverdemo.lpr │ ├── serverdemo.lps │ └── serverdemo.res ├── bind_info.lfm ├── bind_info.pas ├── cp_info.lfm ├── cp_info.pas ├── frmPartner.lfm ├── frmPartner.pas ├── i386-bsd │ ├── bin │ │ ├── clientdemo │ │ ├── partnerdemo │ │ └── serverdemo │ ├── clientdemo.ico │ ├── clientdemo.lpi │ ├── clientdemo.lpr │ ├── clientdemo.lps │ ├── clientdemo.res │ ├── partnerdemo.ico │ ├── partnerdemo.lpi │ ├── partnerdemo.lpr │ ├── partnerdemo.lps │ ├── partnerdemo.res │ ├── serverdemo.ico │ ├── serverdemo.lpi │ ├── serverdemo.lpr │ ├── serverdemo.lps │ └── serverdemo.res ├── i386-linux │ ├── bin │ │ ├── clientdemo │ │ ├── partnerdemo │ │ └── serverdemo │ ├── clientdemo.ico │ ├── clientdemo.lpi │ ├── clientdemo.lpr │ ├── clientdemo.lps │ ├── clientdemo.res │ ├── partnerdemo.ico │ ├── partnerdemo.lpi │ ├── partnerdemo.lpr │ ├── partnerdemo.lps │ ├── partnerdemo.res │ ├── serverdemo.ico │ ├── serverdemo.lpi │ ├── serverdemo.lpr │ ├── serverdemo.lps │ └── serverdemo.res ├── i386-win32 │ ├── PartnerDemo.ico │ ├── PartnerDemo.lpi │ ├── PartnerDemo.lpr │ ├── PartnerDemo.lps │ ├── PartnerDemo.res │ ├── clientdemo.ico │ ├── clientdemo.lpi │ ├── clientdemo.lpr │ ├── clientdemo.lps │ ├── clientdemo.res │ ├── serverdemo.ico │ ├── serverdemo.lpi │ ├── serverdemo.lpr │ ├── serverdemo.lps │ └── serverdemo.res ├── mainclient.lfm ├── mainclient.pas ├── sc_info.lfm ├── sc_info.pas ├── snap7.pas ├── x86_64-linux │ ├── bin │ │ ├── clientdemo │ │ ├── partnerdemo │ │ └── serverdemo │ ├── clientdemo.ico │ ├── clientdemo.lpi │ ├── clientdemo.lpr │ ├── clientdemo.lps │ ├── clientdemo.res │ ├── partnerdemo.ico │ ├── partnerdemo.lpi │ ├── partnerdemo.lpr │ ├── partnerdemo.lps │ ├── partnerdemo.res │ ├── serverdemo.ico │ ├── serverdemo.lpi │ ├── serverdemo.lpr │ ├── serverdemo.lps │ └── serverdemo.res └── x86_64-win64 │ ├── PartnerDemo.ico │ ├── PartnerDemo.lpi │ ├── PartnerDemo.lpr │ ├── PartnerDemo.lps │ ├── PartnerDemo.res │ ├── clientdemo.ico │ ├── clientdemo.lpi │ ├── clientdemo.lpr │ ├── clientdemo.lps │ ├── clientdemo.res │ ├── serverdemo.ico │ ├── serverdemo.lpi │ ├── serverdemo.lpr │ ├── serverdemo.lps │ └── serverdemo.res ├── src ├── core │ ├── .vscode │ │ └── settings.json │ ├── s7_client.cpp │ ├── s7_client.h │ ├── s7_firmware.h │ ├── s7_firmware_1500-backup.h │ ├── s7_firmware_1500.h │ ├── s7_firmware_300.h │ ├── s7_firmware_original.h │ ├── s7_isotcp.cpp │ ├── s7_isotcp.h │ ├── s7_micro_client.cpp │ ├── s7_micro_client.h │ ├── s7_partner.cpp │ ├── s7_partner.h │ ├── s7_peer.cpp │ ├── s7_peer.h │ ├── s7_server.cpp │ ├── s7_server.h │ ├── s7_text.cpp │ ├── s7_text.h │ ├── s7_types.h │ └── snap7-core ├── lib │ ├── snap7.def │ ├── snap7_libmain.cpp │ └── snap7_libmain.h └── sys │ ├── snap_msgsock.cpp │ ├── snap_msgsock.h │ ├── snap_platform.h │ ├── snap_sysutils.cpp │ ├── snap_sysutils.h │ ├── snap_tcpsrvr.cpp │ ├── snap_tcpsrvr.h │ ├── snap_threads.cpp │ ├── snap_threads.h │ ├── sol_threads.h │ ├── unix_threads.h │ └── win_threads.h ├── utility └── Windows │ └── HMITracer │ ├── FastMM4.pas │ ├── FastMM4Messages.pas │ ├── FastMM4Options.inc │ ├── HMITracer.dpr │ ├── HMITracer.dproj │ ├── HMITracer.dproj.local │ ├── HMITracer.dsk │ ├── HMITracer.identcache │ ├── HMITracer.res │ ├── SynPDF │ ├── SynCommons.pas │ ├── SynCrypto.pas │ ├── SynGdiPlus.pas │ ├── SynLZ.pas │ ├── SynPdf.pas │ ├── SynZip.pas │ ├── Synopse.inc │ ├── SynopseCommit.inc │ └── mORMotReport.pas │ ├── frmMain.dfm │ ├── frmMain.pas │ ├── frmReport.dfm │ ├── frmReport.pas │ └── snap7.pas └── win-clean.bat /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/images/architecture.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/images/logo.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/images/screenshot.png -------------------------------------------------------------------------------- /plc-profiles/Allen-Bradley MicroLogix 1100/MicroLogix-1100-website.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/plc-profiles/Allen-Bradley MicroLogix 1100/MicroLogix-1100-website.zip -------------------------------------------------------------------------------- /plc-profiles/Siemens S7-1200/S7-1200-website.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/plc-profiles/Siemens S7-1200/S7-1200-website.zip -------------------------------------------------------------------------------- /plc-profiles/Siemens S7-300/S7-300-website.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/plc-profiles/Siemens S7-300/S7-300-website.zip -------------------------------------------------------------------------------- /snap7/HISTORY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/HISTORY.txt -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Client/Block-Down-Upload.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/Examples/Client/Block-Down-Upload.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Client/BlockDel.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/Examples/Client/BlockDel.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Client/BlockInfo.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/Examples/Client/BlockInfo.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Client/BlockUpload.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/Examples/Client/BlockUpload.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Client/DBFill.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/Examples/Client/DBFill.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Client/DBGet.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/Examples/Client/DBGet.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Client/Directory.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/Examples/Client/Directory.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Client/GetSetParam.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/Examples/Client/GetSetParam.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Client/Password.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/Examples/Client/Password.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Client/PlcDateTime.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/Examples/Client/PlcDateTime.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Client/PlcInfo.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/Examples/Client/PlcInfo.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Client/ReadArea.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/Examples/Client/ReadArea.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Client/ReadSZL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/Examples/Client/ReadSZL.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Client/RunStop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/Examples/Client/RunStop.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Partner/APartner.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/Examples/Partner/APartner.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Partner/PPartner.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/Examples/Partner/PPartner.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Server/ServerDemo.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/Examples/Server/ServerDemo.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Snap7Examples.aliases: -------------------------------------------------------------------------------- 1 | [My Computer] 2 | My Computer = "192.168.0.73" 3 | 4 | -------------------------------------------------------------------------------- /snap7/LabVIEW/Examples/Snap7Examples.lvlps: -------------------------------------------------------------------------------- 1 | [ProjectWindow_Data] 2 | ProjectExplorer.ClassicPosition[String] = "60,93,539,475" 3 | 4 | -------------------------------------------------------------------------------- /snap7/LabVIEW/LabVIEW_32.bat: -------------------------------------------------------------------------------- 1 | copy/y lib\win32\*.dll lib\windows\*.dll -------------------------------------------------------------------------------- /snap7/LabVIEW/LabVIEW_64.bat: -------------------------------------------------------------------------------- 1 | copy/y lib\win64\*.dll lib\windows\*.dll -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliABRead.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliABRead.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliABWrite.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliABWrite.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliCTRead.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliCTRead.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliCTWrite.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliCTWrite.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliClearSessionPassword.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliClearSessionPassword.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliColdStart.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliColdStart.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliCompress.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliCompress.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliConnect.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliConnect.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliConnectTo.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliConnectTo.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliCopyRamToRom.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliCopyRamToRom.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliCreate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliCreate.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliDBFill.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliDBFill.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliDBGet.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliDBGet.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliDBRead.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliDBRead.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliDBWrite.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliDBWrite.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliDelete.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliDelete.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliDestroy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliDestroy.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliDownload.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliDownload.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliEBRead.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliEBRead.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliEBWrite.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliEBWrite.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliErrorText.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliErrorText.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliFullUpload.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliFullUpload.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliGetAGBlockInfo.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliGetAGBlockInfo.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliGetCpInfo.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliGetCpInfo.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliGetCpuInfo.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliGetCpuInfo.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliGetExecTime.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliGetExecTime.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliGetLastError.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliGetLastError.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliGetOrderCode.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliGetOrderCode.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliGetPGBlockInfo.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliGetPGBlockInfo.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliGetParam.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliGetParam.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliGetPduLength.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliGetPduLength.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliGetPlcDateTime.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliGetPlcDateTime.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliGetPlcStatus.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliGetPlcStatus.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliGetProtection.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliGetProtection.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliHotStart.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliHotStart.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliIsoExchangeBuffer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliIsoExchangeBuffer.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliListBlocks.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliListBlocks.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliListBlocksOfType.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliListBlocksOfType.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliMBRead.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliMBRead.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliMBWrite.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliMBWrite.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliReadArea.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliReadArea.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliReadSZL.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliReadSZL.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliReadSZLList.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliReadSZLList.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliSetConnectionParams.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliSetConnectionParams.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliSetConnectionType.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliSetConnectionType.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliSetParam.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliSetParam.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliSetPlcDateTime.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliSetPlcDateTime.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliSetPlcSystemDateTime.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliSetPlcSystemDateTime.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliSetSessionPassword.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliSetSessionPassword.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliStop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliStop.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliTMRead.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliTMRead.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliTMWrite.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliTMWrite.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliUpload.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliUpload.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/CliWriteArea.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/CliWriteArea.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/ParBRecv.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/ParBRecv.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/ParBSend.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/ParBSend.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/ParCreate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/ParCreate.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/ParDestroy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/ParDestroy.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/ParErrorText.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/ParErrorText.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/ParGetLastError.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/ParGetLastError.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/ParGetParam.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/ParGetParam.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/ParGetStat.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/ParGetStat.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/ParGetStatus.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/ParGetStatus.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/ParGetTimes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/ParGetTimes.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/ParSetParam.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/ParSetParam.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/ParStart.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/ParStart.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/ParStartTo.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/ParStartTo.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/ParStop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/ParStop.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/SrvClearEvents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/SrvClearEvents.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/SrvCreate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/SrvCreate.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/SrvDestroy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/SrvDestroy.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/SrvErrorText.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/SrvErrorText.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/SrvEventText.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/SrvEventText.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/SrvGetMask.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/SrvGetMask.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/SrvGetParam.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/SrvGetParam.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/SrvGetStatus.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/SrvGetStatus.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/SrvPickEvent.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/SrvPickEvent.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/SrvRegisterArea.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/SrvRegisterArea.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/SrvSetCpuStatus.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/SrvSetCpuStatus.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/SrvSetMask.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/SrvSetMask.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/SrvSetParam.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/SrvSetParam.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/SrvStart.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/SrvStart.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/SrvStartTo.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/SrvStartTo.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/SrvStop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/SrvStop.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib/SrvUnregisterArea.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib/SrvUnregisterArea.vi -------------------------------------------------------------------------------- /snap7/LabVIEW/lib_build/MinGW32/make.bat: -------------------------------------------------------------------------------- 1 | path=c:\MinGW32\bin;c:\MinGW32\mingw32\bin;%PATH 2 | mingw32-make %1 3 | -------------------------------------------------------------------------------- /snap7/LabVIEW/lib_build/MinGW64/make.bat: -------------------------------------------------------------------------------- 1 | path=c:\MinGW64\bin;c:\MinGW64\x86_64-w64-mingw32\bin;%PATH 2 | mingw32-make %1 3 | -------------------------------------------------------------------------------- /snap7/LabVIEW/lib_build/VS2012_LV/VS2012_LV.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib_build/VS2012_LV/VS2012_LV.v11.suo -------------------------------------------------------------------------------- /snap7/LabVIEW/lib_build/VS2013_LV/VS2013_LV.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib_build/VS2013_LV/VS2013_LV.suo -------------------------------------------------------------------------------- /snap7/LabVIEW/lib_build/VS2013_LV/VS2013_LV.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/LabVIEW/lib_build/VS2013_LV/VS2013_LV.v12.suo -------------------------------------------------------------------------------- /snap7/build/README.txt: -------------------------------------------------------------------------------- 1 | Folders 2 | 3 | bin - Library output directory divided by platform-os 4 | temp - Intermediate objects/temp files, can be safety emptied... 5 | unix - Unix (Linux/BSD/Solaris) makefiles directory 6 | osx - OSX makefiles directory 7 | windows - Windows projects/makefiles directory divided by compilers -------------------------------------------------------------------------------- /snap7/build/bin/Legacy/win32/snap7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/bin/Legacy/win32/snap7.lib -------------------------------------------------------------------------------- /snap7/build/bin/Legacy/win64/snap7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/bin/Legacy/win64/snap7.lib -------------------------------------------------------------------------------- /snap7/build/bin/i386-linux/libsnap7.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/bin/i386-linux/libsnap7.so -------------------------------------------------------------------------------- /snap7/build/bin/win32/snap7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/bin/win32/snap7.lib -------------------------------------------------------------------------------- /snap7/build/bin/win64/snap7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/bin/win64/snap7.lib -------------------------------------------------------------------------------- /snap7/build/bin/x86_64-linux/libsnap7.so-1200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/bin/x86_64-linux/libsnap7.so-1200 -------------------------------------------------------------------------------- /snap7/build/bin/x86_64-linux/libsnap7.so-1500: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/bin/x86_64-linux/libsnap7.so-1500 -------------------------------------------------------------------------------- /snap7/build/bin/x86_64-linux/libsnap7.so-300: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/bin/x86_64-linux/libsnap7.so-300 -------------------------------------------------------------------------------- /snap7/build/osx/i386_osx.mk: -------------------------------------------------------------------------------- 1 | ## 2 | ## i386 OSX based Makefile 3 | ## Tested with OSX 10.9 Mavericks 4 | ## 5 | TargetCPU :=i386 6 | OS :=osx 7 | CXXFLAGS := -O3 -fPIC -pedantic 8 | 9 | # Standard part 10 | 11 | include common.mk 12 | -------------------------------------------------------------------------------- /snap7/build/osx/x86_64_osx.mk: -------------------------------------------------------------------------------- 1 | ## 2 | ## x86_64 BSD based (FreeBSD etc.) Makefile 3 | ## Use gmake instead of make 4 | ## 5 | TargetCPU :=x86_64 6 | OS :=osx 7 | CXXFLAGS := -O3 -fPIC -pedantic 8 | 9 | # Standard part 10 | 11 | include common.mk 12 | 13 | -------------------------------------------------------------------------------- /snap7/build/temp/README.txt: -------------------------------------------------------------------------------- 1 | These folders contain intermediate objects/temp files, can be safety emptied... -------------------------------------------------------------------------------- /snap7/build/temp/Win32/VS2013.tlog/VS2013.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v120_xp:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Release|Win32|C:\Snap7\Deploy-1.4.0\snap7-full-1.4.0\build\windows\VS2013\| 3 | -------------------------------------------------------------------------------- /snap7/build/temp/Win64/VS2013.tlog/VS2013.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v120_xp:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit 2 | Release|x64|C:\Snap7\Deploy-1.4.0\snap7-full-1.4.0\build\windows\VS2013\| 3 | -------------------------------------------------------------------------------- /snap7/build/temp/i386/core_s7_client.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/i386/core_s7_client.o -------------------------------------------------------------------------------- /snap7/build/temp/i386/core_s7_isotcp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/i386/core_s7_isotcp.o -------------------------------------------------------------------------------- /snap7/build/temp/i386/core_s7_micro_client.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/i386/core_s7_micro_client.o -------------------------------------------------------------------------------- /snap7/build/temp/i386/core_s7_partner.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/i386/core_s7_partner.o -------------------------------------------------------------------------------- /snap7/build/temp/i386/core_s7_peer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/i386/core_s7_peer.o -------------------------------------------------------------------------------- /snap7/build/temp/i386/core_s7_server.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/i386/core_s7_server.o -------------------------------------------------------------------------------- /snap7/build/temp/i386/core_s7_text.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/i386/core_s7_text.o -------------------------------------------------------------------------------- /snap7/build/temp/i386/lib_snap7_libmain.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/i386/lib_snap7_libmain.o -------------------------------------------------------------------------------- /snap7/build/temp/i386/sys_snap_msgsock.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/i386/sys_snap_msgsock.o -------------------------------------------------------------------------------- /snap7/build/temp/i386/sys_snap_sysutils.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/i386/sys_snap_sysutils.o -------------------------------------------------------------------------------- /snap7/build/temp/i386/sys_snap_tcpsrvr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/i386/sys_snap_tcpsrvr.o -------------------------------------------------------------------------------- /snap7/build/temp/i386/sys_snap_threads.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/i386/sys_snap_threads.o -------------------------------------------------------------------------------- /snap7/build/temp/x86_64/core_s7_client.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/x86_64/core_s7_client.o -------------------------------------------------------------------------------- /snap7/build/temp/x86_64/core_s7_isotcp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/x86_64/core_s7_isotcp.o -------------------------------------------------------------------------------- /snap7/build/temp/x86_64/core_s7_micro_client.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/x86_64/core_s7_micro_client.o -------------------------------------------------------------------------------- /snap7/build/temp/x86_64/core_s7_partner.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/x86_64/core_s7_partner.o -------------------------------------------------------------------------------- /snap7/build/temp/x86_64/core_s7_peer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/x86_64/core_s7_peer.o -------------------------------------------------------------------------------- /snap7/build/temp/x86_64/core_s7_server.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/x86_64/core_s7_server.o -------------------------------------------------------------------------------- /snap7/build/temp/x86_64/core_s7_text.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/x86_64/core_s7_text.o -------------------------------------------------------------------------------- /snap7/build/temp/x86_64/lib_snap7_libmain.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/x86_64/lib_snap7_libmain.o -------------------------------------------------------------------------------- /snap7/build/temp/x86_64/sys_snap_msgsock.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/x86_64/sys_snap_msgsock.o -------------------------------------------------------------------------------- /snap7/build/temp/x86_64/sys_snap_sysutils.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/x86_64/sys_snap_sysutils.o -------------------------------------------------------------------------------- /snap7/build/temp/x86_64/sys_snap_tcpsrvr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/x86_64/sys_snap_tcpsrvr.o -------------------------------------------------------------------------------- /snap7/build/temp/x86_64/sys_snap_threads.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/temp/x86_64/sys_snap_threads.o -------------------------------------------------------------------------------- /snap7/build/unix/i386_bsd.mk: -------------------------------------------------------------------------------- 1 | ## 2 | ## i386 BSD based (FreeBSD etc.) Makefile 3 | ## Use gmake instead of make 4 | ## 5 | TargetCPU :=i386 6 | OS :=bsd 7 | CXXFLAGS := -O3 -fPIC -pedantic 8 | 9 | # Standard part 10 | 11 | include common.mk 12 | 13 | -------------------------------------------------------------------------------- /snap7/build/unix/i386_linux.mk: -------------------------------------------------------------------------------- 1 | ## 2 | ## i386 Linux based (Debian/Ubuntu/Red Hat/Slackware etc.) Makefile 3 | ## Use make 4 | ## 5 | TargetCPU :=i386 6 | OS :=linux 7 | CXXFLAGS := -O3 -fPIC -pedantic 8 | 9 | # Standard part 10 | 11 | include common.mk 12 | -------------------------------------------------------------------------------- /snap7/build/unix/x86_64_bsd.mk: -------------------------------------------------------------------------------- 1 | ## 2 | ## x86_64 BSD based (FreeBSD etc.) Makefile 3 | ## Use gmake instead of make 4 | ## 5 | TargetCPU :=x86_64 6 | OS :=bsd 7 | CXXFLAGS := -O3 -fPIC -pedantic 8 | 9 | # Standard part 10 | 11 | include common.mk 12 | 13 | -------------------------------------------------------------------------------- /snap7/build/unix/x86_64_linux.mk: -------------------------------------------------------------------------------- 1 | ## 2 | ## x86_64 Linux based (Debian/Ubuntu/Red Hat/Slackware etc.) Makefile 3 | ## Use make 4 | ## 5 | TargetCPU :=x86_64 6 | OS :=linux 7 | CXXFLAGS := -std=c++11 -fdiagnostics-color -O3 -fPIC -pedantic 8 | 9 | # Standard part 10 | 11 | include common.mk 12 | 13 | -------------------------------------------------------------------------------- /snap7/build/windows/MinGW32/README.txt: -------------------------------------------------------------------------------- 1 | run "make clean" or "make" 2 | 3 | Assuming that MinGW32 toolchain is installed in C:\MinGW32. 4 | If not, you need to change accordingly its reference in makefile and make.bat 5 | 6 | -------------------------------------------------------------------------------- /snap7/build/windows/MinGW32/make.bat: -------------------------------------------------------------------------------- 1 | path=c:\MinGW32\bin;c:\MinGW32\mingw32\bin;%PATH 2 | mingw32-make %1 3 | -------------------------------------------------------------------------------- /snap7/build/windows/MinGW64/README.txt: -------------------------------------------------------------------------------- 1 | run "make clean" or "make" 2 | 3 | Assuming that MinGW64 toolchain is installed in C:\MinGW64. 4 | If not, you need to change accordingly its reference in makefile and make.bat 5 | 6 | -------------------------------------------------------------------------------- /snap7/build/windows/MinGW64/make.bat: -------------------------------------------------------------------------------- 1 | path=c:\MinGW64\bin;c:\MinGW64\x86_64-w64-mingw32\bin;%PATH 2 | mingw32-make %1 3 | -------------------------------------------------------------------------------- /snap7/build/windows/README.txt: -------------------------------------------------------------------------------- 1 | updatelib.bat will propagate the libraries built to the demo / release folders. 2 | Call it after the build. 3 | 4 | ***IT'S ONLY FOR WINDOWS*** 5 | -------------------------------------------------------------------------------- /snap7/build/windows/VS2008/VS2008.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/windows/VS2008/VS2008.suo -------------------------------------------------------------------------------- /snap7/build/windows/VS2010/VS2010.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/windows/VS2010/VS2010.suo -------------------------------------------------------------------------------- /snap7/build/windows/VS2012/VS2012.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/windows/VS2012/VS2012.v11.suo -------------------------------------------------------------------------------- /snap7/build/windows/VS2013/VS2013.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/build/windows/VS2013/VS2013.v12.suo -------------------------------------------------------------------------------- /snap7/doc/Snap7-refman.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/doc/Snap7-refman.pdf -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/ApiLog/LogIDs: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/ApiLog/Types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/ApiLog/Types -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/ApiLog/lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/ApiLog/lock -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/CONN/LINKVL.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/CONN/LINKVL.dbf -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/CONN/LOCKVL.LCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/CONN/LOCKVL.LCK -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/CONN/VERBLIST.PRO: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/CONN/VERBTAB.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/CONN/VERBTAB.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/CONN/VLTAB53.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/CONN/VLTAB53.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/Global/141099_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/Global/141099_4.txt -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/Global/141099_4_dp_asi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/Global/141099_4_dp_asi.txt -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/Global/Font_1: -------------------------------------------------------------------------------- 1 | 11 2 | 0 3 | 0 4 | 0 5 | 0 6 | 0 7 | 0 8 | 0 9 | 1 10 | 0 11 | 0 12 | 0 13 | 0 14 | Courier New -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/Global/Font_2: -------------------------------------------------------------------------------- 1 | 11 2 | 0 3 | 0 4 | 0 5 | 0 6 | 0 7 | 0 8 | 0 9 | 1 10 | 0 11 | 0 12 | 0 13 | 0 14 | Arial -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/Global/Language: -------------------------------------------------------------------------------- 1 | 0 2 | 1033 3 | 0 4 | 1252 5 | 437 6 | English (United States) 7 | -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/Global/S7hCompressedMetadata.cmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/Global/S7hCompressedMetadata.cmf -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/Global/S7hMetaData.umf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/Global/S7hMetaData.umf -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/Global/colorder.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/Global/colorder.dat -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/Global/colwidth.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/Global/colwidth.dat -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/Global/s7netpro.npa: -------------------------------------------------------------------------------- 1 | SPAK -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/Global/s7netpro.wnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/Global/s7netpro.wnd -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/S7NFREMX/S7NFREMX.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/S7NFREMX/S7NFREMX.tab -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/S7Netze/S7NONFGX.id: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/S7Netze/S7NONFGX.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/S7Netze/S7NONFGX.lnk -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/S7Netze/S7NONFGX.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/S7Netze/S7NONFGX.tab -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/Snap7.S7S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/Snap7.S7S -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/Snap7.s7p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/Snap7.s7p -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/YDBs/8299/SYMLIST.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/YDBs/8299/SYMLIST.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/YDBs/8299/Symlist.id: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/YDBs/SYMLISTS.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/YDBs/SYMLISTS.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/YDBs/SYMLISTS.MDX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/YDBs/SYMLISTS.MDX -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/S7HK31AX/HATTARY1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/S7HK31AX/HATTARY1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/S7HK31AX/HATTARY1.DBT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/S7HK31AX/HATTARY1.DBT -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/S7HK31AX/HATTRIB1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/S7HK31AX/HATTRIB1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/S7HK31AX/HATTRME1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/S7HK31AX/HATTRME1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/S7HK31AX/HATTRME1.DBT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/S7HK31AX/HATTRME1.DBT -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/S7HK31AX/HOBJECT1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/S7HK31AX/HOBJECT1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/S7HK31AX/hLockID1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/S7HK31AX/hLockID1 -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hdevnx/HATTARY1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hdevnx/HATTARY1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hdevnx/HATTARY1.DBT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hdevnx/HATTARY1.DBT -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hdevnx/HATTRIB1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hdevnx/HATTRIB1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hdevnx/HATTRME1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hdevnx/HATTRME1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hdevnx/HATTRME1.DBT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hdevnx/HATTRME1.DBT -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hdevnx/HOBJECT1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hdevnx/HOBJECT1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hdevnx/hLockID1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hdevnx/hLockID1 -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hkdmax/HATTARY1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hkdmax/HATTARY1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hkdmax/HATTARY1.DBT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hkdmax/HATTARY1.DBT -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hkdmax/HATTRIB1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hkdmax/HATTRIB1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hkdmax/HATTRME1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hkdmax/HATTRME1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hkdmax/HATTRME1.DBT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hkdmax/HATTRME1.DBT -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hkdmax/HOBJECT1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hkdmax/HOBJECT1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hkdmax/hLockID1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hkdmax/hLockID1 -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hss30x/HATTARY1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hss30x/HATTARY1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hss30x/HATTARY1.DBT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hss30x/HATTARY1.DBT -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hss30x/HATTRIB1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hss30x/HATTRIB1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hss30x/HATTRME1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hss30x/HATTRME1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hss30x/HATTRME1.DBT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hss30x/HATTRME1.DBT -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hss30x/HOBJECT1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hss30x/HOBJECT1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hss30x/hLockID1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hss30x/hLockID1 -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hssiox/HATTARY1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hssiox/HATTARY1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hssiox/HATTARY1.DBT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hssiox/HATTARY1.DBT -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hssiox/HATTRIB1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hssiox/HATTRIB1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hssiox/HATTRME1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hssiox/HATTRME1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hssiox/HATTRME1.DBT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hssiox/HATTRME1.DBT -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hssiox/HOBJECT1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hssiox/HOBJECT1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hssiox/hLockID1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hssiox/hLockID1 -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/1.s7h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/1.s7h -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/4.s7h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/4.s7h -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/HADDRES3.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/HADDRES3.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/HADDRES3.DBT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/HADDRES3.DBT -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/HATTARY1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/HATTARY1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/HATTARY1.DBT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/HATTARY1.DBT -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/HATTRIB1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/HATTRIB1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/HATTRME1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/HATTRME1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/HATTRME1.DBT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/HATTRME1.DBT -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/HOBJECT1.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/HOBJECT1.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/hLockID1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hOmSave7/s7hstatx/hLockID1 -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hrs/S7RESOFF.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hrs/S7RESOFF.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hrs/S7RESONL.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hrs/S7RESONL.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hrs/lastrsf.res: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hrs/lastrsn.res: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hrs/linkhrs.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hrs/linkhrs.lnk -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hrs/rsflock.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hrs/rsflock.res -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/hrs/rsnlock.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/hrs/rsnlock.res -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/link.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/link.lnk -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/meldeom/TEXTOM.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/meldeom/TEXTOM.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/meldeom/TEXTOM.DBT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/meldeom/TEXTOM.DBT -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/meldeom/TEXTOM.MDX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/meldeom/TEXTOM.MDX -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/meldeom/meldvers.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/meldeom/textom.hid: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/meldeom/textom.lck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/meldeom/textom.lck -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/ombstx/offline/00000002/BAUSTEIN.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/ombstx/offline/00000002/BAUSTEIN.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/ombstx/offline/00000002/BAUSTEIN.DBT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/ombstx/offline/00000002/BAUSTEIN.DBT -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/ombstx/offline/00000002/SUBBLK.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/ombstx/offline/00000002/SUBBLK.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/ombstx/offline/00000002/SUBBLK.DBT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/ombstx/offline/00000002/SUBBLK.DBT -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/ombstx/offline/00000002/baustein.id: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/ombstx/offline/00000002/baustein.lck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/ombstx/offline/00000002/baustein.lck -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/ombstx/offline/00000002/usfapx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/ombstx/offline/00000002/usfapx.ini -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/ombstx/offline/BSTCNTOF.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/ombstx/offline/BSTCNTOF.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/ombstx/offline/bstcntof.id: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/ombstx/offline/bstcntof.lck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/ombstx/offline/bstcntof.lck -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/ombstx/online/BSTCNTON.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/ombstx/online/BSTCNTON.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/ombstx/online/bstcnton.id: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/ombstx/online/bstcnton.lck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/ombstx/online/bstcnton.lck -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/omgd/S7GD.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/omgd/S7GD.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/omgd/S7GD.DBT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/omgd/S7GD.DBT -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/omgd/gdflock.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/omgd/gdflock.res -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/omgd/lastgd: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/pgs/S7GS.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/pgs/S7GS.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/pgs/gsflock.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/pgs/gsflock.res -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/pgs/lastgs: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/s7asrcom/00000001/S7CONTAI.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/s7asrcom/00000001/S7CONTAI.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/s7asrcom/00000001/s7source.lck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/s7asrcom/00000001/s7source.lck -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/s7asrcom/S7CNTREF.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/s7asrcom/S7CNTREF.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/s7asrcom/s7cntID.src: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/s7asrcom/s7contai.lck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/s7asrcom/s7contai.lck -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/s7extref/s7pltref.lck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/s7extref/s7pltref.lck -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/s7extref/s7pltref.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/s7netpro.npa: -------------------------------------------------------------------------------- 1 | SPAK -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/sdb/00000002/00000037.PG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/sdb/00000002/00000037.PG -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/sdb/00000002/00000038.PG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/sdb/00000002/00000038.PG -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/sdb/00000002/00000039.PG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/sdb/00000002/00000039.PG -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/sdb/00000002/0000003a.PG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/sdb/00000002/0000003a.PG -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/sdb/00000002/0000003b.PG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/sdb/00000002/0000003b.PG -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/sdb/00000002/0000003c.PG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/sdb/00000002/0000003c.PG -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/sdb/00000002/0000003d.PG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/sdb/00000002/0000003d.PG -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/sdb/00000002/0000003e.PG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/sdb/00000002/0000003e.PG -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/sdb/00000002/0000003f.PG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/sdb/00000002/0000003f.PG -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/sdb/00000002/list/00000002.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/sdb/00000002/list/00000002.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/sdb/00000002/list/00000002.MDX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/sdb/00000002/list/00000002.MDX -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/sdb/S0112001.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/sdb/S0112001.DBF -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/sdb/sdblast.id: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /snap7/examples/Step 7/Snap7/sdb/sdblock.lck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/Step 7/Snap7/sdb/sdblock.lck -------------------------------------------------------------------------------- /snap7/examples/cpp/arm_v6-linux/apartner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/arm_v6-linux/apartner -------------------------------------------------------------------------------- /snap7/examples/cpp/arm_v6-linux/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/arm_v6-linux/client -------------------------------------------------------------------------------- /snap7/examples/cpp/arm_v6-linux/ppartner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/arm_v6-linux/ppartner -------------------------------------------------------------------------------- /snap7/examples/cpp/arm_v6-linux/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/arm_v6-linux/server -------------------------------------------------------------------------------- /snap7/examples/cpp/arm_v7-linux/README.txt: -------------------------------------------------------------------------------- 1 | Since ARM V7 architecture is shared among all Linux small boards (except for Raspberry pi 1), binary demos are not supplied. 2 | Simply run make to build them. -------------------------------------------------------------------------------- /snap7/examples/cpp/i386-bsd/README.txt: -------------------------------------------------------------------------------- 1 | For BSD use gmake (clean|all) instead of make. -------------------------------------------------------------------------------- /snap7/examples/cpp/i386-linux/README.txt: -------------------------------------------------------------------------------- 1 | In this folder there are no more binaries since they depends on the LIBCC version. 2 | To build them open a terminal and just type make -------------------------------------------------------------------------------- /snap7/examples/cpp/i386-solaris/README.txt: -------------------------------------------------------------------------------- 1 | For Solaris 11 use gmake (clean|all) instead of make. -------------------------------------------------------------------------------- /snap7/examples/cpp/win32/make.bat: -------------------------------------------------------------------------------- 1 | path=c:\MinGW32\bin;c:\MinGW32\mingw32\bin;%PATH 2 | mingw32-make %1 3 | -------------------------------------------------------------------------------- /snap7/examples/cpp/win64/make.bat: -------------------------------------------------------------------------------- 1 | path=c:\MinGW64\bin;c:\MinGW64\x86_64-w64-mingw32\bin;%PATH 2 | mingw32-make %1 3 | -------------------------------------------------------------------------------- /snap7/examples/cpp/win64/snap7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/win64/snap7.lib -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-bsd/README.txt: -------------------------------------------------------------------------------- 1 | For BSD use gmake (clean|all) instead of make. -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/README.txt: -------------------------------------------------------------------------------- 1 | In this folder there are no more binaries since they depends on the LIBCC version. 2 | To build them open a terminal and just type make -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/apartner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/apartner -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/blockdump.mc7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/blockdump.mc7 -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/blockdump_Sat Apr 25 14:16:29 2020 : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/blockdump_Sat Apr 25 14:16:29 2020 -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:33:06 2020 : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:33:06 2020 -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:33:35 2020 : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:33:35 2020 -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:34:03 2020 : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:34:03 2020 -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:34:15 2020 : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:34:15 2020 -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:38:39 2020 : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:38:39 2020 -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:38:46 2020 : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:38:46 2020 -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:42:20 2020 : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:42:20 2020 -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:42:26 2020 : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:42:26 2020 -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:42:31 2020 : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/blockdump_Tue Apr 28 09:42:31 2020 -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/captured/blockdump.mc7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/captured/blockdump.mc7 -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/client -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/ppartner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/ppartner -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/s7comm.log: -------------------------------------------------------------------------------- 1 | 2020-09-19 21:39:24 Server started 2 | 2020-09-19 21:39:33 [127.0.0.1] Client added 3 | 2020-09-19 21:39:35 [127.0.0.1] Client disconnected by peer 4 | -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/server -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/server_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/server_old -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-linux/srv_resourceless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/cpp/x86_64-linux/srv_resourceless -------------------------------------------------------------------------------- /snap7/examples/cpp/x86_64-solaris/README.txt: -------------------------------------------------------------------------------- 1 | For Solaris 11 use gmake (clean|all) instead of make. -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/APartner/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/APartner/obj/x64/Debug/APartner.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/APartner/obj/x64/Debug/APartner.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/APartner/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/APartner/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/APartner/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/APartner/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/APartner/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/APartner/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/APartner/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/APartner/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/APartner/obj/x86/Debug/APartner.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/APartner/obj/x86/Debug/APartner.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/APartner/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/APartner/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/APartner/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/APartner/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/APartner/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/APartner/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x64/APartner.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x64/APartner.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x64/Client.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x64/Client.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x64/PPartner.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x64/PPartner.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x64/Server.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x64/Server.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x64/SrvResourceless.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x86/APartner.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x86/APartner.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x86/Client.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x86/Client.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x86/PPartner.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x86/PPartner.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x86/Server.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x86/Server.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x86/SrvResourceless.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Bin/x86/SrvResourceless.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Client/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Client/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Client/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Client/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Client/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Client/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Client/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Client/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Client/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Client/obj/x86/Debug/Client.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Client/obj/x86/Debug/Client.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Client/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Client/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Client/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Client/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Client/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Client/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/PPartner/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/PPartner/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/PPartner/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/PPartner/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/PPartner/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/PPartner/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/PPartner/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/PPartner/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/PPartner/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/PPartner/obj/x86/Debug/PPartner.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/PPartner/obj/x86/Debug/PPartner.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/PPartner/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/PPartner/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/PPartner/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/PPartner/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/PPartner/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/PPartner/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Server/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Server/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Server/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Server/obj/x64/Debug/Server.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Server/obj/x64/Debug/Server.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Server/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Server/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Server/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Server/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Server/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Server/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Server/obj/x86/Debug/Server.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Server/obj/x86/Debug/Server.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Server/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Server/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Server/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Server/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Server/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Server/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/Snap7Console.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/Snap7Console.v12.suo -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/SrvResourceless/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x64/Debug/SrvResourceless.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x64/Debug/SrvResourceless.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x86/Debug/SrvResourceless.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x86/Debug/SrvResourceless.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinConsole/SrvResourceless/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/BuildSnap7Assembly/Snap7.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/BuildSnap7Assembly/Snap7.suo -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/BuildSnap7Assembly/Snap7.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/BuildSnap7Assembly/Snap7.v12.suo -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/BuildSnap7Assembly/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/BuildSnap7Assembly/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/BuildSnap7Assembly/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/BuildSnap7Assembly/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/BuildSnap7Assembly/obj/Release/Snap7.net.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/BuildSnap7Assembly/obj/Release/Snap7.net.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/Bin/x64/CSClientMultiRead.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/Bin/x64/CSClientMultiRead.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/Bin/x64/CSServer.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/Bin/x86/CSClientMultiRead.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/Bin/x86/CSClientMultiRead.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/Bin/x86/CSServer.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/Bin/x86/CSServer.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Debug/CSClient.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Debug/CSClient.MainForm.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Debug/CSClient.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Debug/CSClient.Properties.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Debug/CSClient.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Debug/CSClient.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Release/CSClient.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Release/CSClient.MainForm.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Release/CSClient.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Release/CSClient.Properties.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Release/CSClient.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Release/CSClient.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Debug/CSClient.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Debug/CSClient.MainForm.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Debug/CSClient.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Debug/CSClient.Properties.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Debug/CSClient.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Debug/CSClient.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Debug/CSClient.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Debug/CSClient.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Release/CSClient.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Release/CSClient.MainForm.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Release/CSClient.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Release/CSClient.Properties.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Release/CSClient.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Release/CSClient.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Release/CSClient.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Release/CSClient.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClient/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/CSClientMultiRead.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/CSClientMultiRead.Form1.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/CSClientMultiRead.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/CSClientMultiRead.Properties.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/CSClientMultiRead.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/CSClientMultiRead.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/CSClientMultiRead.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/CSClientMultiRead.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/CSClientMultiRead.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/CSClientMultiRead.Form1.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/CSClientMultiRead.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/CSClientMultiRead.Properties.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/CSClientMultiRead.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/CSClientMultiRead.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/CSClientMultiRead.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/CSClientMultiRead.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Release/CSClientMultiRead.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Release/CSClientMultiRead.Form1.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Release/CSClientMultiRead.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Release/CSClientMultiRead.Properties.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Release/CSClientMultiRead.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Release/CSClientMultiRead.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Debug/CSClientMultiRead.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Debug/CSClientMultiRead.Form1.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Debug/CSClientMultiRead.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Debug/CSClientMultiRead.Properties.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Debug/CSClientMultiRead.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Debug/CSClientMultiRead.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Debug/CSClientMultiRead.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Debug/CSClientMultiRead.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Release/CSClientMultiRead.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Release/CSClientMultiRead.Form1.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Release/CSClientMultiRead.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Release/CSClientMultiRead.Properties.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Release/CSClientMultiRead.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Release/CSClientMultiRead.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Release/CSClientMultiRead.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Release/CSClientMultiRead.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSClientMultiRead/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Release/CSServer.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Release/CSServer.MainForm.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Release/CSServer.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Release/CSServer.Properties.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Release/CSServer.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Release/CSServer.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x64/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/CSServer.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/CSServer.MainForm.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/CSServer.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/CSServer.Properties.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/CSServer.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/CSServer.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/CSServer.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/CSServer.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSServer/obj/x86/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSharp.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSharp.suo -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSharp.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSharp.v11.suo -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/CSharp/CSharp.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/CSharp/CSharp.v12.suo -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/READ-BEFORE-EMAIL-ME.txt: -------------------------------------------------------------------------------- 1 | There is a new chapter into the online (and offline documentation): 2 | .NET Environment 3 | 4 | Please read it and follow all suggestions before email me. 5 | Thanks -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient.suo -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient.v12.suo -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x64/Debug/VBClient.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x64/Debug/VBClient.MainForm.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x64/Debug/VBClient.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x64/Debug/VBClient.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x64/Debug/VBClient.vbproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x64/Debug/VBClient.vbproj.GenerateResource.Cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x64/Release/VBClient.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x64/Release/VBClient.MainForm.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x64/Release/VBClient.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x64/Release/VBClient.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x64/Release/VBClient.vbproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x64/Release/VBClient.vbproj.GenerateResource.Cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Debug/VBClient.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Debug/VBClient.MainForm.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Debug/VBClient.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Debug/VBClient.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Debug/VBClient.vbproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Debug/VBClient.vbproj.GenerateResource.Cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Release/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Release/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Release/VBClient.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Release/VBClient.MainForm.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Release/VBClient.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Release/VBClient.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Release/VBClient.vbproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Release/VBClient.vbproj.GenerateResource.Cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Release/VBClient.vbprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB/VBClient/obj/x86/Release/VBClient.vbprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/Snap7.net/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/Snap7.net/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/Snap7.net/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/Snap7.net/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient.suo -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient.v12.suo -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x64/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x64/Debug/VBClient.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x64/Debug/VBClient.MainForm.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x64/Debug/VBClient.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x64/Debug/VBClient.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x64/Debug/VBClient.vbproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x64/Debug/VBClient.vbproj.GenerateResource.Cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x64/Debug/VBClient.vbprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x64/Debug/VBClient.vbprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Debug/VBClient.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Debug/VBClient.MainForm.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Debug/VBClient.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Debug/VBClient.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Debug/VBClient.vbproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Debug/VBClient.vbproj.GenerateResource.Cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Debug/VBClient.vbprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Debug/VBClient.vbprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Release/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Release/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Release/VBClient.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Release/VBClient.MainForm.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Release/VBClient.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/dot.net/WinForm/VB_Mixed/VBClient/obj/x86/Release/VBClient.Resources.resources -------------------------------------------------------------------------------- /snap7/examples/dot.net/clean-tmp.bat: -------------------------------------------------------------------------------- 1 | Del /S *.pdb 2 | Del /S *.sdf 3 | -------------------------------------------------------------------------------- /snap7/examples/dot.net/mono/README.txt: -------------------------------------------------------------------------------- 1 | use: 2 | 3 | 4 | mono 5 | 6 | 7 | examples: 8 | 9 | 10 | mono Client.exe 192.168.0.71 11 | 12 | 13 | sudo mono Server.exe (Server needs root rights to listen on port 102) -------------------------------------------------------------------------------- /snap7/examples/plain-c/arm_v7-linux/README.txt: -------------------------------------------------------------------------------- 1 | Since ARM V7 architecture is shared among all Linux small boards (except for Raspberry), binary demos are not supplied. 2 | Simply run make to build them. -------------------------------------------------------------------------------- /snap7/examples/plain-c/i386-bsd/README.txt: -------------------------------------------------------------------------------- 1 | For BSD use gmake (clean|all) instead of make. -------------------------------------------------------------------------------- /snap7/examples/plain-c/i386-linux/README.txt: -------------------------------------------------------------------------------- 1 | In this folder there are no more binaries since they depends on the LIBCC version. 2 | To build them open a terminal and just type "make" -------------------------------------------------------------------------------- /snap7/examples/plain-c/i386-solaris/README.txt: -------------------------------------------------------------------------------- 1 | For Solaris 11 use gmake (clean|all) instead of make. -------------------------------------------------------------------------------- /snap7/examples/plain-c/win32/make.bat: -------------------------------------------------------------------------------- 1 | path=c:\MinGW32\bin;c:\MinGW32\mingw32\bin;%PATH 2 | mingw32-make %1 3 | -------------------------------------------------------------------------------- /snap7/examples/plain-c/win64/make.bat: -------------------------------------------------------------------------------- 1 | path=c:\MinGW64\bin;c:\MinGW64\x86_64-w64-mingw32\bin;%PATH 2 | mingw32-make %1 3 | -------------------------------------------------------------------------------- /snap7/examples/plain-c/win64/snap7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/examples/plain-c/win64/snap7.lib -------------------------------------------------------------------------------- /snap7/examples/plain-c/x86_64-bsd/README.txt: -------------------------------------------------------------------------------- 1 | For BSD use gmake (clean|all) instead of make. -------------------------------------------------------------------------------- /snap7/examples/plain-c/x86_64-linux/README.txt: -------------------------------------------------------------------------------- 1 | In this folder there are no more binaries since they depends on the LIBCC version. 2 | To build them open a terminal and just type make -------------------------------------------------------------------------------- /snap7/examples/plain-c/x86_64-solaris/README.txt: -------------------------------------------------------------------------------- 1 | For Solaris 11 use gmake (clean|all) instead of make. -------------------------------------------------------------------------------- /snap7/examples/start_s7oiehsx_x64.bat: -------------------------------------------------------------------------------- 1 | net start s7oiehsx64 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /snap7/examples/start_s7oiehsx_x86.bat: -------------------------------------------------------------------------------- 1 | net start s7oiehsx 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /snap7/examples/stop_s7oiehsx_x64.bat: -------------------------------------------------------------------------------- 1 | net stop s7oiehsx64 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /snap7/examples/stop_s7oiehsx_x86.bat: -------------------------------------------------------------------------------- 1 | net stop s7oiehsx 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /snap7/release/Windows/Legacy/README.txt: -------------------------------------------------------------------------------- 1 | The libraries in these folders were built with MinGW32/64. 2 | Use them only for Windows NT, Windows 2000, Windows 2003 Server. 3 | 4 | They work also with Windows XP+ (Win7,Win8,Win2010) but there are some issues with the 64 bit dot net compilers. -------------------------------------------------------------------------------- /snap7/release/Windows/Legacy/Win32/snap7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/release/Windows/Legacy/Win32/snap7.lib -------------------------------------------------------------------------------- /snap7/release/Windows/Legacy/Win64/snap7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/release/Windows/Legacy/Win64/snap7.lib -------------------------------------------------------------------------------- /snap7/release/Windows/Win32/snap7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/release/Windows/Win32/snap7.lib -------------------------------------------------------------------------------- /snap7/release/Windows/Win64/snap7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/release/Windows/Win64/snap7.lib -------------------------------------------------------------------------------- /snap7/release/Wrappers/c-cpp/README.txt: -------------------------------------------------------------------------------- 1 | In your C programs you need only to include snap7.h. 2 | 3 | In your c++ program you also need to add snap7.cpp to the project. 4 | 5 | In both cases, only in Windows, you need to add snap7.lib to the linker lib references (use the correct release in accord to your platform model 32 or 64 bit). -------------------------------------------------------------------------------- /snap7/release/Wrappers/pascal/snap7.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/release/Wrappers/pascal/snap7.pas -------------------------------------------------------------------------------- /snap7/rich-demos/Cubieboard2/clientdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/Cubieboard2/clientdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/Cubieboard2/clientdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/Cubieboard2/clientdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/Cubieboard2/partnerdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/Cubieboard2/partnerdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/Cubieboard2/partnerdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/Cubieboard2/partnerdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/Cubieboard2/serverdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/Cubieboard2/serverdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/Cubieboard2/serverdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/Cubieboard2/serverdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/Raspberry/bin/clientdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/Raspberry/bin/clientdemo -------------------------------------------------------------------------------- /snap7/rich-demos/Raspberry/bin/partnerdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/Raspberry/bin/partnerdemo -------------------------------------------------------------------------------- /snap7/rich-demos/Raspberry/bin/serverdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/Raspberry/bin/serverdemo -------------------------------------------------------------------------------- /snap7/rich-demos/Raspberry/clientdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/Raspberry/clientdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/Raspberry/clientdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/Raspberry/clientdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/Raspberry/partnerdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/Raspberry/partnerdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/Raspberry/partnerdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/Raspberry/partnerdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/Raspberry/serverdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/Raspberry/serverdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/Raspberry/serverdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/Raspberry/serverdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/i386-bsd/bin/clientdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-bsd/bin/clientdemo -------------------------------------------------------------------------------- /snap7/rich-demos/i386-bsd/bin/partnerdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-bsd/bin/partnerdemo -------------------------------------------------------------------------------- /snap7/rich-demos/i386-bsd/bin/serverdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-bsd/bin/serverdemo -------------------------------------------------------------------------------- /snap7/rich-demos/i386-bsd/clientdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-bsd/clientdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/i386-bsd/clientdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-bsd/clientdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/i386-bsd/partnerdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-bsd/partnerdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/i386-bsd/partnerdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-bsd/partnerdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/i386-bsd/serverdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-bsd/serverdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/i386-bsd/serverdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-bsd/serverdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/i386-linux/bin/clientdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-linux/bin/clientdemo -------------------------------------------------------------------------------- /snap7/rich-demos/i386-linux/bin/partnerdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-linux/bin/partnerdemo -------------------------------------------------------------------------------- /snap7/rich-demos/i386-linux/bin/serverdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-linux/bin/serverdemo -------------------------------------------------------------------------------- /snap7/rich-demos/i386-linux/clientdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-linux/clientdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/i386-linux/clientdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-linux/clientdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/i386-linux/partnerdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-linux/partnerdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/i386-linux/partnerdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-linux/partnerdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/i386-linux/serverdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-linux/serverdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/i386-linux/serverdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-linux/serverdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/i386-win32/PartnerDemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-win32/PartnerDemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/i386-win32/PartnerDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-win32/PartnerDemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/i386-win32/clientdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-win32/clientdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/i386-win32/clientdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-win32/clientdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/i386-win32/serverdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-win32/serverdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/i386-win32/serverdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/i386-win32/serverdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/snap7.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/snap7.pas -------------------------------------------------------------------------------- /snap7/rich-demos/x86_64-linux/bin/clientdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/x86_64-linux/bin/clientdemo -------------------------------------------------------------------------------- /snap7/rich-demos/x86_64-linux/bin/partnerdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/x86_64-linux/bin/partnerdemo -------------------------------------------------------------------------------- /snap7/rich-demos/x86_64-linux/bin/serverdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/x86_64-linux/bin/serverdemo -------------------------------------------------------------------------------- /snap7/rich-demos/x86_64-linux/clientdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/x86_64-linux/clientdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/x86_64-linux/clientdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/x86_64-linux/clientdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/x86_64-linux/partnerdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/x86_64-linux/partnerdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/x86_64-linux/partnerdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/x86_64-linux/partnerdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/x86_64-linux/serverdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/x86_64-linux/serverdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/x86_64-linux/serverdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/x86_64-linux/serverdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/x86_64-win64/PartnerDemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/x86_64-win64/PartnerDemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/x86_64-win64/PartnerDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/x86_64-win64/PartnerDemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/x86_64-win64/clientdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/x86_64-win64/clientdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/x86_64-win64/clientdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/x86_64-win64/clientdemo.res -------------------------------------------------------------------------------- /snap7/rich-demos/x86_64-win64/serverdemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/x86_64-win64/serverdemo.ico -------------------------------------------------------------------------------- /snap7/rich-demos/x86_64-win64/serverdemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/rich-demos/x86_64-win64/serverdemo.res -------------------------------------------------------------------------------- /snap7/src/core/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.associations": { 3 | "cstddef": "cpp" 4 | } 5 | } -------------------------------------------------------------------------------- /snap7/src/core/snap7-core: -------------------------------------------------------------------------------- 1 | { 2 | "folders": [ 3 | { 4 | "path": "." 5 | } 6 | ], 7 | "settings": {} 8 | } -------------------------------------------------------------------------------- /snap7/utility/Windows/HMITracer/FastMM4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/utility/Windows/HMITracer/FastMM4.pas -------------------------------------------------------------------------------- /snap7/utility/Windows/HMITracer/HMITracer.identcache: -------------------------------------------------------------------------------- 1 | NC:\Snap7\Deploy-1.4.0\snap7-full-1.4.0\utility\Windows\HMITracer\frmReport.pasNC:\Snap7\Deploy-1.4.0\snap7-full-1.4.0\utility\Windows\HMITracer\HMITracer.dprLC:\Snap7\Deploy-1.4.0\snap7-full-1.4.0\utility\Windows\HMITracer\frmMain.pas -------------------------------------------------------------------------------- /snap7/utility/Windows/HMITracer/HMITracer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/utility/Windows/HMITracer/HMITracer.res -------------------------------------------------------------------------------- /snap7/utility/Windows/HMITracer/SynPDF/SynCommons.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/utility/Windows/HMITracer/SynPDF/SynCommons.pas -------------------------------------------------------------------------------- /snap7/utility/Windows/HMITracer/SynPDF/SynPdf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/utility/Windows/HMITracer/SynPDF/SynPdf.pas -------------------------------------------------------------------------------- /snap7/utility/Windows/HMITracer/SynPDF/SynopseCommit.inc: -------------------------------------------------------------------------------- 1 | '1.18.1150' 2 | -------------------------------------------------------------------------------- /snap7/utility/Windows/HMITracer/SynPDF/mORMotReport.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/utility/Windows/HMITracer/SynPDF/mORMotReport.pas -------------------------------------------------------------------------------- /snap7/utility/Windows/HMITracer/snap7.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sefcom/honeyplc/61882345ceb2600243cb496286636b7fff8adc4e/snap7/utility/Windows/HMITracer/snap7.pas --------------------------------------------------------------------------------