mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
12 lines
353 B
C
12 lines
353 B
C
|
#ifndef IDATACACHE_H
|
||
|
#define IDATACACHE_H
|
||
|
|
||
|
//---------------------------------------------------------
|
||
|
// Cache-defined handle for a cache item
|
||
|
//---------------------------------------------------------
|
||
|
FORWARD_DECLARE_HANDLE(memhandle_t);
|
||
|
typedef memhandle_t DataCacheHandle_t;
|
||
|
#define DC_INVALID_HANDLE ((DataCacheHandle_t)0)
|
||
|
|
||
|
#endif // IDATACACHE_H
|