Search found 2 matches

by ProfessorWC
Mon Nov 25, 2019 8:19 pm
Forum: Software Development Kit (SDK) Questions
Topic: Handling an event from another plugin
Replies: 1
Views: 17108

Re: Handling an event from another plugin

Updating with some sample code. In the C# plugin I am creating some events that I would like the C++ to handle: simconnect.MapClientEventToSimEvent(EVENTS.ONE, "event.one"); simconnect.AddClientEventToNotificationGroup(NOTIFICATON_GROUPS.GROUP0, EVENTS.ONE, false); In C++ I have tried to s...
by ProfessorWC
Tue Nov 19, 2019 11:37 pm
Forum: Software Development Kit (SDK) Questions
Topic: Handling an event from another plugin
Replies: 1
Views: 17108

Handling an event from another plugin

My team is building two independent plugins, and we are trying to close the loop on some functionality between them. We have a C# application that is transmitting a custom client event, and a C++ plugin that we want to subscribe to the event and then take some actions within the simulator. We aren't...