controller_patcher/utils/CPFSUtils.hpp
Maschell 409871f29d Changed the way configuration files are loaded.
- Now the app using the controller_patcher_lib is responseable for
mounting the device. This give the application the freedom to load it
from any place. (Which implements devoptabs)
2017-10-14 15:45:45 +02:00

13 lines
247 B
C++

#ifndef _CPFS_UTILS_H_
#define _CPFS_UTILS_H_
#include <string>
#include <vector>
#include <gctypes.h>
class CPFSUtils{
public:
static s32 LoadFileToMem(const char *filepath, u8 **inbuffer, u32 *size);
};
#endif /* _CPFS_UTILS_H_ */