2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2010-06-09 01:37:08 +00:00
|
|
|
|
|
|
|
#ifndef _DLCACHE_H
|
|
|
|
#define _DLCACHE_H
|
|
|
|
|
|
|
|
bool HandleDisplayList(u32 address, u32 size);
|
2011-02-08 00:28:28 +00:00
|
|
|
void IncrementCheckContextId();
|
2010-06-09 01:37:08 +00:00
|
|
|
|
|
|
|
namespace DLCache {
|
|
|
|
|
|
|
|
void Init();
|
|
|
|
void Shutdown();
|
|
|
|
void ProgressiveCleanup();
|
|
|
|
void Clear();
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif // _DLCACHE_H
|