Files

19 lines
389 B
C++
Raw Permalink Normal View History

// Copyright 2008 Dolphin Emulator Project
2015-05-18 01:08:10 +02:00
// Licensed under GPLv2+
// Refer to the license.txt file included.
2010-06-09 01:37:08 +00:00
#pragma once
#include <string>
2010-06-09 01:37:08 +00:00
#include "Common/CommonTypes.h"
2010-06-09 01:37:08 +00:00
namespace FileMon
{
2014-03-04 08:39:25 -05:00
bool IsSoundFile(const std::string& filename);
void ReadFileSystem(const std::string& file);
2014-03-04 08:39:25 -05:00
void CheckFile(const std::string& file, u64 size);
void FindFilename(u64 offset);
2010-06-09 01:37:08 +00:00
void Close();
}