mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
17 lines
333 B
C++
17 lines
333 B
C++
#pragma once
|
|
|
|
struct IGpFiber;
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class HostSystemServices;
|
|
}
|
|
|
|
class GpFiberStarter
|
|
{
|
|
public:
|
|
typedef void(*ThreadFunc_t)(void *context);
|
|
|
|
static IGpFiber *StartFiber(PortabilityLayer::HostSystemServices *systemServices, ThreadFunc_t threadFunc, void *context, IGpFiber *creatingFiber);
|
|
};
|