summaryrefslogtreecommitdiffstats
path: root/src/common/symbols.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-05-08 00:01:37 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2017-05-08 00:33:39 +0200
commitcb4da3975e076c828f77b3517a73e2071c605950 (patch)
treed1c0f42e9f5f5b7224948531b7bda5c4d724f1ad /src/common/symbols.h
parentRemove ability to load symbol maps (diff)
downloadyuzu-cb4da3975e076c828f77b3517a73e2071c605950.tar
yuzu-cb4da3975e076c828f77b3517a73e2071c605950.tar.gz
yuzu-cb4da3975e076c828f77b3517a73e2071c605950.tar.bz2
yuzu-cb4da3975e076c828f77b3517a73e2071c605950.tar.lz
yuzu-cb4da3975e076c828f77b3517a73e2071c605950.tar.xz
yuzu-cb4da3975e076c828f77b3517a73e2071c605950.tar.zst
yuzu-cb4da3975e076c828f77b3517a73e2071c605950.zip
Diffstat (limited to '')
-rw-r--r--src/common/symbols.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/common/symbols.h b/src/common/symbols.h
deleted file mode 100644
index f5a48e05a..000000000
--- a/src/common/symbols.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2014 Citra Emulator Project
-// Licensed under GPLv2 or any later version
-// Refer to the license.txt file included.
-
-#pragma once
-
-#include <map>
-#include <string>
-#include <utility>
-#include "common/common_types.h"
-
-struct TSymbol {
- u32 address = 0;
- std::string name;
- u32 size = 0;
- u32 type = 0;
-};
-
-typedef std::map<u32, TSymbol> TSymbolsMap;
-typedef std::pair<u32, TSymbol> TSymbolsPair;
-
-namespace Symbols {
-bool HasSymbol(u32 address);
-
-void Add(u32 address, const std::string& name, u32 size, u32 type);
-TSymbol GetSymbol(u32 address);
-const std::string GetName(u32 address);
-void Remove(u32 address);
-void Clear();
-}