mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-22 22:45:39 +00:00
12 lines
218 B
C++
12 lines
218 B
C++
#pragma once
|
|
|
|
struct IGpFiber;
|
|
|
|
class GpFiberStarter
|
|
{
|
|
public:
|
|
typedef void(*ThreadFunc_t)(void *context);
|
|
|
|
static IGpFiber *StartFiber(ThreadFunc_t threadFunc, void *context, IGpFiber *creatingFiber);
|
|
};
|