dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
resource.h
Go to the documentation of this file.
1
2#ifndef RESOURCE_H
3#define RESOURCE_H
4
13/* ! */
14#ifdef ANCIENT_C
15/* ! */
16
17# define resource_debug_printf
18# define resource_error_printf
19
20/* ! */
21#else
22/* ! */
23
24#ifndef resource_debug_printf
25#define resource_debug_printf( lvl, fmt, rsrc, ... ) debug_printf( lvl, "resource %d: " fmt, rsrc, __VA_ARGS__ )
26#endif /* !resource_printf */
27
28#ifndef resource_error_printf
29#define resource_error_printf( fmt, rsrc, ... ) error_printf( "resource %d: " fmt, rsrc, __VA_ARGS__ )
30#endif /* !resource_printf */
31
32/* ! */
33#endif
34/* ! */
35
40RESOURCE_HANDLE resource_get_handle( const RESOURCE_ID id ) SECTION_SETUP;
41
46MEMORY_PTR resource_lock_handle( RESOURCE_HANDLE handle ) SECTION_SETUP;
47
52MEMORY_PTR resource_unlock_handle( RESOURCE_HANDLE handle ) SECTION_SETUP;
53
54int32_t resource_sz_handle( RESOURCE_HANDLE handle ) SECTION_SETUP;
55void resource_free_handle( RESOURCE_HANDLE ) SECTION_SETUP;
56
57uint8_t resource_id_from_name(
58 RESOURCE_ID* id, RESOURCE_NAME name, const char* ext ) SECTION_SETUP;
59
62#endif /* RESOURCE_H */
63
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