mirror of
https://github.com/wiiu-env/wudd.git
synced 2024-11-06 10:35:06 +01:00
13 lines
278 B
C++
13 lines
278 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <wut_types.h>
|
|
|
|
class FSUtils {
|
|
public:
|
|
static int32_t CreateSubfolder(const char *fullpath);
|
|
|
|
static int32_t CheckFile(const char *filepath);
|
|
|
|
static int32_t saveBufferToFile(const char *path, void *buffer, uint32_t size);
|
|
}; |