mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 05:40:11 +00:00
33 lines
653 B
C#
33 lines
653 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace MSFSPopoutPanelManager.SimConnectAgent.TouchPanel
|
|
{
|
|
public enum SIMCONNECT_CLIENT_DATA_ID
|
|
{
|
|
MOBIFLIGHT_LVARS,
|
|
MOBIFLIGHT_CMD,
|
|
MOBIFLIGHT_RESPONSE
|
|
}
|
|
|
|
public enum MOBIFLIGHT_EVENTS
|
|
{
|
|
DUMMY
|
|
};
|
|
|
|
public enum SIMCONNECT_REQUEST_ID
|
|
{
|
|
Dummy = 0
|
|
}
|
|
|
|
public enum SIMCONNECT_NOTIFICATION_GROUP_ID
|
|
{
|
|
SIMCONNECT_GROUP_PRIORITY_DEFAULT,
|
|
SIMCONNECT_GROUP_PRIORITY_HIGHEST
|
|
}
|
|
|
|
public struct ResponseString
|
|
{
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 1024)]
|
|
public string Data;
|
|
}
|
|
}
|