mirror of
https://github.com/open-goal/jak-project
synced 2026-08-20 22:35:07 -04:00
1012020035
* IopThreadRecord -> IopThread * add libco * Use cooperative threading for IOP threads * Ugly solution for overlord start Needs to run in a thread * Clean out thread shutdown logic * Update comments
11 lines
245 B
C
11 lines
245 B
C
#pragma once
|
|
|
|
#ifndef JAK_V2_OVERLORD_H
|
|
#define JAK_V2_OVERLORD_H
|
|
|
|
int start_overlord(int argc, const char* const* argv);
|
|
int start_overlord_wrapper(int argc, const char* const* argv, bool* signal);
|
|
void ExitIOP();
|
|
|
|
#endif // JAK_V2_OVERLORD_H
|