mirror of
https://github.com/tswow/tswow
synced 2026-08-14 20:29:06 -04:00
19 lines
402 B
C++
19 lines
402 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace ClientMPQ
|
|
{
|
|
// If the file is not found, size 0 is returned and no error
|
|
// message is logged.
|
|
size_t readFile(
|
|
std::string const& filename
|
|
, char** buf
|
|
);
|
|
|
|
// If the file is not found, size 0 is returned and no error
|
|
// message is logged.
|
|
std::string readFile(
|
|
std::string const& filename
|
|
);
|
|
}
|