SDeviceSettings Structure
typedef struct __declspec(align(2))
{
unsigned int uiDevice;
union {
SFireSettings fire;
SFire2Settings fire2;
SVCAN3Settings vcan3;
SRADGalaxySettings radgalaxy;
SRADStar2Settings radstar2;
SVCAN4Settings vcan4;
SVCAN412Settings vcan4_12;
SVividCANSettings vividcan;
SRADPlutoSettings pluto;
SRADSuperMoonSettings supermoon;
} Settings;
} SDeviceSettings;<StructLayout(LayoutKind.Sequential, Pack:=2)> Public Structure SDeviceSettings
Dim uiDevice As UInt32
Dim Settings As HardwareSettingsToUse '//HardwareSettingsToUse with correct Struct
End Structure[StructLayout(LayoutKind.Sequential,Pack=2)]
public struct SDeviceSettings
{
public UInt32 uiDevice;
public HardwareSettingsToUse Settings; //HardwareSettingsToUse with correct Struct
}Item
Description
Last updated