mirror of
https://github.com/elasota/Aerofoil.git
synced 2026-03-10 00:46:35 +00:00
12 lines
214 B
C
12 lines
214 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
class GpFiber;
|
||
|
|
|
||
|
|
class GpFiberStarter
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
typedef void(*ThreadFunc_t)(void *context);
|
||
|
|
|
||
|
|
static GpFiber *StartFiber(ThreadFunc_t threadFunc, void *context, GpFiber *creatingFiber);
|
||
|
|
};
|