update 2014-07-31 3

This commit is contained in:
parallelbgls
2014-07-31 17:09:53 +08:00
parent d9ee83fb89
commit 7395c43572
9 changed files with 1612 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace ModBus.Net
{
public interface IProtocalFormatting
{
byte[] Format(InputStruct message);
byte[] Format(params object[] message);
OutputStruct Unformat(byte[] messageBytes, ref int pos);
}
}