You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
395 B
17 lines
395 B
namespace Globale_Variablen.AnzeigeDaten
|
|
{
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
[Serializable, StructLayout(LayoutKind.Sequential)]
|
|
public struct tMessungJustage
|
|
{
|
|
public float Soll;
|
|
public float Toleranz;
|
|
public float Ist;
|
|
public float res1_float;
|
|
public float res2_float;
|
|
public float res3_float;
|
|
}
|
|
}
|
|
|
|
|