mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
15 lines
434 B
C++
15 lines
434 B
C++
#pragma once
|
|
#include <string>
|
|
#include <fnd/MemoryBlob.h>
|
|
|
|
namespace fnd
|
|
{
|
|
namespace io
|
|
{
|
|
size_t getFileSize(const std::string& path);
|
|
void readFile(const std::string& path, MemoryBlob& blob);
|
|
void readFile(const std::string& path, size_t offset, size_t len, MemoryBlob& blob);
|
|
void writeFile(const std::string& path, const MemoryBlob& blob);
|
|
void writeFile(const std::string& path, const byte_t* data, size_t len);
|
|
}
|
|
}
|