mirror of
https://github.com/devkitPro/wut.git
synced 2026-03-29 21:35:13 -05:00
13 lines
399 B
C++
13 lines
399 B
C++
#include <nn/sl/TitleListCache.h>
|
|
|
|
namespace nn::sl {
|
|
namespace {
|
|
extern "C" details::ITitleListCacheInternal *GetDefaultTitleListCache__Q2_2nn2slFv();
|
|
}
|
|
static TitleListCacheFromPtr sDefaultTitleListCache(GetDefaultTitleListCache__Q2_2nn2slFv());
|
|
|
|
details::ITitleListCacheBase &GetDefaultTitleListCache() {
|
|
return sDefaultTitleListCache;
|
|
}
|
|
|
|
} // namespace nn::sl
|