sketch out some codebase-wide standard thread entry point boilerplate

This commit is contained in:
Ryan Fleury
2024-02-25 14:13:27 -08:00
parent 93ab48ecdf
commit dd05eaa21e
4 changed files with 49 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
// Copyright (c) 2024 Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef BASE_ENTRY_POINT_H
#define BASE_ENTRY_POINT_H
internal void main_thread_base_entry_point(void (*entry_point)(CmdLine *cmdline), char **arguments, U64 arguments_count);
internal void supplement_thread_base_entry_point(void (*entry_point)(void *params), void *params);
#endif // BASE_ENTRY_POINT_H