mirror of
https://github.com/devkitPro/wut.git
synced 2026-03-21 17:34:47 -05:00
Some checks failed
C/C++ CI / ubuntu-latest (push) Has been cancelled
`find . -regex '.*\.\(cpp\|hpp\|cu\|cuh\|c\|h\)' -exec clang-format -style=file -i {} \;`
22 lines
346 B
C
22 lines
346 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
|