mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +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);
|
|
};
|