mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-13 07:32:23 -07:00
13 lines
393 B
C
13 lines
393 B
C
// Copyright (c) 2024 Epic Games Tools
|
|
// Licensed under the MIT license (https://opensource.org/license/mit/)
|
|
|
|
#ifndef BASE_MARKUP_H
|
|
#define BASE_MARKUP_H
|
|
|
|
internal void set_thread_name(String8 string);
|
|
internal void set_thread_namef(char *fmt, ...);
|
|
#define ThreadNameF(...) (set_thread_namef(__VA_ARGS__))
|
|
#define ThreadName(str) (set_thread_name(str))
|
|
|
|
#endif // BASE_MARKUP_H
|