- coroutineCreate
Coroutine* coroutineCreate(CoroutineFunc func, CoroutineStack stack, void* context)
Undocumented in source. Be warned that the author may not have intended to support it.
- coroutineCreateStandaloneStack
CoroutineStack coroutineCreateStandaloneStack(size_t minMemory, bool useGuardPage)
Undocumented in source. Be warned that the author may not have intended to support it.
- coroutineDestroy
void coroutineDestroy(Coroutine* routine)
Undocumented in source. Be warned that the author may not have intended to support it.
- coroutineDestroyStack
void coroutineDestroyStack(CoroutineStack stack)
Undocumented in source. Be warned that the author may not have intended to support it.
- coroutineExit
void coroutineExit()
Undocumented in source. Be warned that the author may not have intended to support it.
- coroutineGetContext
void* coroutineGetContext()
Undocumented in source. Be warned that the author may not have intended to support it.
- coroutineReset
void coroutineReset(Coroutine* routine, void* newContext, CoroutineFunc newEntryPoint)
Undocumented in source. Be warned that the author may not have intended to support it.
- coroutineResume
void coroutineResume(Coroutine* routine)
Undocumented in source. Be warned that the author may not have intended to support it.
- coroutineStart
void coroutineStart(Coroutine* to)
Undocumented in source. Be warned that the author may not have intended to support it.
- coroutineSwap
void coroutineSwap(Coroutine* from, Coroutine* to)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- coroutineYield
void coroutineYield()
Undocumented in source. Be warned that the author may not have intended to support it.