This commit is contained in:
ed
2025-02-01 18:30:43 -05:00
parent a4e836dda8
commit 7a95ada831
13 changed files with 69 additions and 6 deletions
+9
View File
@@ -1,4 +1,5 @@
#if MD_INTELLISENSE_DIRECTIVES
#pragma once
#include "cstd.h"
#endif
@@ -22,6 +23,14 @@
#endif
#endif // GEN_API
#ifndef global // Global variables
# ifdef MD_DYN_EXPORT
# define global
# else
# define global static
# endif
#endif
#ifndef internal
#define internal static
#endif
+5
View File
@@ -1,3 +1,8 @@
#ifdef MD_INTELLISENSE_DIRECTIVES
#pragma once
#include "rarena.h"
#endif
// Copyright (c) 2024 Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
+1
View File
@@ -1,4 +1,5 @@
#if MD_INTELLISENSE_DIRECTIVES
#pragma once
#include "base_types.h"
#endif
+1 -1
View File
@@ -71,7 +71,7 @@ void* alloc( AllocatorInfo a, SSIZE size );
void* alloc_align( AllocatorInfo a, SSIZE size, SSIZE alignment );
//! Free allocated memory.
void allocator_free( AllocatorInfo a, void* ptr );
void alloc_free( AllocatorInfo a, void* ptr );
//! Free all memory allocated by an allocator.
void free_all( AllocatorInfo a );
@@ -1,9 +1,11 @@
#ifdef MD_INTELLISENSE_DIRECTIVES
#pragma once
#include
#endif
// Copyright (c) 2024 Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
#ifndef OS_CORE_LINUX_H
#define OS_CORE_LINUX_H
////////////////////////////////
//~ rjf: Includes
@@ -130,5 +132,3 @@ internal void os_lnx_entity_release(OS_LNX_Entity *entity);
//~ rjf: Thread Entry Point
internal void *os_lnx_thread_entry_point(void *ptr);
#endif // OS_CORE_LINUX_H