Files
Aerofoil/GpShell/GpFiberStarter.h

13 lines
279 B
C
Raw Normal View History

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