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