chore: add missing platforms and xui c++ files

This commit is contained in:
2026-07-09 04:45:38 -04:00
parent 6a777d54df
commit 99605af782
14364 changed files with 3506211 additions and 0 deletions
@@ -0,0 +1,17 @@
#ifndef _MULTITHREADEDHOOKSAMPLE_ITHREAD_H_
#define _MULTITHREADEDHOOKSAMPLE_ITHREAD_H_
typedef void(*ThreadFunction)();
class IThread
{
public:
virtual ~IThread() {}
virtual void Fork(ThreadFunction a_Function) = 0;
virtual void Join() = 0;
};
IThread* CreateThread();
void DestroyThread(IThread* a_Thread);
#endif // _MULTITHREADEDHOOKSAMPLE_ITHREAD_H_