From 2517f00bf9f1c34c092a5711073e39a6b4af658a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tolga=20=C3=87ak=C4=B1r?= Date: Tue, 9 Feb 2021 09:00:43 +0300 Subject: [PATCH] Add ResultOK to S7Consts --- Sharp7/S7Consts.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Sharp7/S7Consts.cs b/Sharp7/S7Consts.cs index 0a4a5b5..5ed7d5b 100644 --- a/Sharp7/S7Consts.cs +++ b/Sharp7/S7Consts.cs @@ -11,6 +11,7 @@ namespace Sharp7 //------------------------------------------------------------------------------ // ERRORS //------------------------------------------------------------------------------ + public const int ResultOK = 0x00000000; public const int errTCPSocketCreation = 0x00000001; public const int errTCPConnectionTimeout = 0x00000002; public const int errTCPConnectionFailed = 0x00000003;