# SIMCONNECT_RECV_FLOW_EVENT The **SIMCONNECT\_RECV\_FLOW\_EVENT** structure is received if a flow event is triggered by the sim and if the client has subscribed to those events using [SimConnect\_SubscribeToFlowEvent](../events-and-data/simconnect-subscribetoflowevent/).   ##### Syntax ``` cpp SIMCONNECT_REFSTRUCT SIMCONNECT_RECV_FLOW_EVENT : public SIMCONNECT_RECV { SIMCONNECT_FLOW_EVENT FlowEvent; SIMCONNECT_STRING(FltPath, 256); }; ```   ##### Members {{< table-wrapper >}} | Member | Description | |-------------|----------------------------------------------------------------------------------------------------------------------------------------| | `FlowEvent` | Type of the event which has been triggered by the sim. Event is part of the enum [SIMCONNECT\_FLOW\_EVENT](simconnect-flow-event/). | | `FltPath` | VFS path of a potential FLT file that is loaded. | {{< /table-wrapper >}}   ##### Remarks This struct inherits members from the `SIMCONNECT_RECV` struct.