mirror of
https://github.com/devkitPro/wut.git
synced 2026-04-24 15:37:18 -05:00
19 lines
347 B
C
19 lines
347 B
C
#pragma once
|
|
|
|
typedef enum __wut_thread_specific_id {
|
|
WUT_THREAD_SPECIFIC_0 = 0,
|
|
WUT_THREAD_SPECIFIC_1 = 1,
|
|
} __wut_thread_specific_id;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void wut_set_thread_specific(__wut_thread_specific_id id, void *value);
|
|
|
|
void *wut_get_thread_specific(__wut_thread_specific_id id);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|