You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
20 lines
443 B
C++
20 lines
443 B
C++
// Copyright 2011-2020 Molecular Matters GmbH, all rights reserved.
|
|
|
|
#pragma once
|
|
|
|
// BEGIN EPIC MOD
|
|
#include "CoreTypes.h"
|
|
// END EPIC MOD
|
|
|
|
namespace syncPoint
|
|
{
|
|
// Called when a host process wants to enter the sync point
|
|
void Enter(void);
|
|
|
|
// Called when a host process wants to leave the sync point
|
|
void Leave(void);
|
|
|
|
// Called by the LPP API when user code in a target process wants to enter the sync point
|
|
void EnterTarget(void);
|
|
}
|