mirror of
https://github.com/zeldaret/botw
synced 2026-05-26 23:47:16 -04:00
27 lines
787 B
C++
27 lines
787 B
C++
#pragma once
|
|
|
|
#include <prim/seadSafeString.h>
|
|
|
|
namespace ksys::res {
|
|
|
|
class EntryFactoryBase;
|
|
|
|
void registerEntryFactory(EntryFactoryBase* factory, const sead::SafeString& name);
|
|
void unregisterEntryFactory(EntryFactoryBase* factory);
|
|
|
|
// In release builds, the only thing this function does is return 1.
|
|
// TODO: figure out what this is used for. Stubbed log function?
|
|
bool stubbedLogFunction();
|
|
|
|
// In release builds, the only thing this function does is return 0.
|
|
// TODO: figure out what this is used for. Stubbed log function?
|
|
bool returnFalse();
|
|
|
|
// In release builds, the only thing this function does is return 0.
|
|
// TODO: figure out what this is used for. Stubbed log function?
|
|
bool returnFalse2(const sead::SafeString&);
|
|
|
|
s32 getDefaultAlignment();
|
|
|
|
} // namespace ksys::res
|