mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-13 07:32:23 -07:00
13 lines
438 B
C
13 lines
438 B
C
// 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(int argc, char **argv);
|
|
internal void supplement_thread_base_entry_point(void (*entry_point)(void *params), void *params);
|
|
internal U64 update_tick_idx(void);
|
|
internal B32 update(void);
|
|
|
|
#endif // BASE_ENTRY_POINT_H
|