Files
dolphin/Source/Core/DiscIO/FileMonitor.h
T

21 lines
382 B
C++
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
// 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 ReadGC(const std::string& file);
void CheckFile(const std::string& file, u64 size);
void FindFilename(u64 offset);
2010-06-09 01:37:08 +00:00
void Close();
}