Version Structure/Class
[C/C++]
struct FlowSshC_Version
{
unsigned short m_major;
unsigned short m_minor;
};
[C#]
public sealed class Version
{
public ushort Major;
public ushort Minor;
}
Members
- Major: Major version number.
- Minor: Minor version number.
Remarks
Contains version information about the current FlowSshC/Cpp/Net library.
[C/C++] The version can be retrieved with FlowSshC_GetVersion.
[.NET] The version can be retrieved with [SshNet]GetVersion.