mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2025-01-09 11:09:22 +01:00
14 lines
254 B
C++
14 lines
254 B
C++
#pragma once
|
|
|
|
#include <wut_types.h>
|
|
|
|
#include <string>
|
|
#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);
|
|
};
|