base progress

This commit is contained in:
ed
2025-02-01 22:58:35 -05:00
parent 97e54f15a3
commit 078bf4b271
22 changed files with 101 additions and 94 deletions
+7 -6
View File
@@ -1,12 +1,13 @@
#ifdef MD_INTELLISENSE_DIRECTIVES
# pragma once
# include "linkage.h"
# include "strings.h"
#endif
// 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
#define ThreadName(str) (set_thread_name(str))