mirror of
https://github.com/devkitPro/wut.git
synced 2026-08-06 01:41:15 -05:00
13 lines
362 B
C++
13 lines
362 B
C++
#include <nn/sl/ITransferrer.h>
|
|
|
|
namespace nn::sl {
|
|
namespace {
|
|
extern "C" details::ITransferrerInternal *GetDrcTransferrer__Q2_2nn2slFv();
|
|
}
|
|
|
|
static details::TransferrerFromPtr sDrcTransferrer(GetDrcTransferrer__Q2_2nn2slFv());
|
|
|
|
details::ITransferrerBase &GetDrcTransferrer() {
|
|
return sDrcTransferrer;
|
|
}
|
|
} // namespace nn::sl
|