mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2026-03-22 01:35:55 -05:00
15 lines
277 B
C++
15 lines
277 B
C++
#pragma once
|
|
|
|
#include <wut_types.h>
|
|
|
|
#include <string>
|
|
#include <string_view>
|
|
#include <vector>
|
|
|
|
class FSUtils {
|
|
public:
|
|
static int32_t LoadFileToMem(std::string_view filepath, std::vector<uint8_t> &buffer);
|
|
|
|
static bool CreateSubfolder(std::string_view fullpath);
|
|
};
|