namespace TeamsISO.Engine.NdiInterop;
///
/// Constants describing the NDI SDK version this build was compiled against.
/// The runtime version reported by is compared against
/// by the engine's runtime probe to detect
/// installations that pre-date or post-date the SDK headers (per spec ยง6).
///
public static class NdiVersion
{
/// The SDK family this build targets (NDI 6).
public const string SdkFamily = "NDI 6";
///
/// Prefix of the runtime version string we expect (NDI runtime reports e.g.
/// "NDI SDK for Windows v6.0.1.0"). Any major change of the leading "v6" is treated
/// as a mismatch.
///
public const string ExpectedRuntimeVersionPrefix = "NDI SDK for Windows v6";
}