mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-23 14:41:33 -04:00
82b4f6327c
Visible in debuggers etc
14 lines
173 B
C
14 lines
173 B
C
#ifndef DUSK_OS_H
|
|
#define DUSK_OS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void OSSetCurrentThreadName(const char* name);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // DUSK_OS_H
|