mdelibs/include/MDE/Core/Thread.h
2025-11-25 11:08:13 +09:00

22 lines
346 B
C

#ifndef __MDE_CORE_THREAD_H__
#define __MDE_CORE_THREAD_H__
#include <MDE/MachDep.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef void* MDEThread;
MDEThread MDEThreadCreate(void (*call)(void* user_data), void* user_data);
void MDEThreadDestroy(MDEThread thread);
void MDEThreadJoin(MDEThread thread);
#ifdef __cplusplus
}
#endif
#endif