summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Src/FileMonitor.h
blob: 3b40332eea751fd4b2ad27e7dcdf0b503d7abd2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.

#include <iostream> // System: For std

#include "Common.h" // Common: For u64


namespace FileMon
{

void ShowSound(std::string File);
void ReadGC(std::string File);
void CheckFile(std::string File, u64 Size);
void FindFilename(u64 Offset);
void Close();

}