17# define resource_debug_printf
18# define resource_error_printf
24#ifndef resource_debug_printf
25#define resource_debug_printf( lvl, fmt, rsrc, ... ) debug_printf( lvl, "resource %d: " fmt, rsrc, __VA_ARGS__ )
28#ifndef resource_error_printf
29#define resource_error_printf( fmt, rsrc, ... ) error_printf( "resource %d: " fmt, rsrc, __VA_ARGS__ )
40RESOURCE_HANDLE resource_get_handle(
const RESOURCE_ID id ) SECTION_SETUP;
54int32_t resource_sz_handle( RESOURCE_HANDLE handle ) SECTION_SETUP;
55void resource_free_handle( RESOURCE_HANDLE ) SECTION_SETUP;
57uint8_t resource_id_from_name(
58 RESOURCE_ID*
id, RESOURCE_NAME name,
const char* ext ) SECTION_SETUP;
void * MEMORY_PTR
A C-style memory pointer that can be safely dereferenced.
Definition: fakem.h:42
MEMORY_PTR resource_lock_handle(RESOURCE_HANDLE handle) SECTION_SETUP
Lock the given handle so that it cannot be relocated in memory by the operating system.
MEMORY_PTR resource_unlock_handle(RESOURCE_HANDLE handle) SECTION_SETUP
Unlock the given handle so that it may be relocated/recovered by the operating system.
uint32_t RESOURCE_ID
String or numerical identifier specifying an asset on disk.
Definition: nullr.h:16