mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Cleanup and fixup CMDLCache::GetVCollide (originally named CMDLCache::GetStudioHdr which was incorrect).
12 lines
358 B
C
12 lines
358 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 ((void*)0xDEADFEEDDEADFEED)
|
|
|
|
#endif // IDATACACHE_H
|