Files
LNXRNT/Kore/Backends/System/Microsoft/Sources/kinc/backend/thread.h
2026-06-09 13:00:08 -07:00

16 lines
179 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
void *handle;
void *param;
void (*func)(void *param);
} kinc_thread_impl_t;
#ifdef __cplusplus
}
#endif