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.
23 lines
631 B
23 lines
631 B
namespace Globale_Variablen.AnzeigeDaten
|
|
{
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
[Serializable, StructLayout(LayoutKind.Sequential)]
|
|
public struct tEinstellungenJustage
|
|
{
|
|
public int res1_int;
|
|
public int res2_int;
|
|
public int res3_int;
|
|
public float res1_float;
|
|
public float res2_float;
|
|
public float res3_float;
|
|
public float VerstaerkungArbeitssensor;
|
|
public float VerstaerkungReferenzsensor;
|
|
public float Impulse;
|
|
public float Leistung;
|
|
public float Frequenz;
|
|
public float Tastverhaeltnis;
|
|
}
|
|
}
|
|
|
|
|