Files
Aerofoil/GpShell/GpFiberStarter.h

17 lines
333 B
C
Raw Normal View History

2019-11-11 00:11:59 -05:00
#pragma once
struct IGpFiber;
namespace PortabilityLayer
{
class HostSystemServices;
}
2019-11-11 00:11:59 -05:00
class GpFiberStarter
{
public:
typedef void(*ThreadFunc_t)(void *context);
static IGpFiber *StartFiber(PortabilityLayer::HostSystemServices *systemServices, ThreadFunc_t threadFunc, void *context, IGpFiber *creatingFiber);
2019-11-11 00:11:59 -05:00
};