summaryrefslogtreecommitdiffstats
path: root/src/common/extended_trace.h
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2015-02-19 07:30:31 +0100
committerarchshift <admin@archshift.com>2015-02-19 07:30:31 +0100
commit9f7f1a227225c6dd5575e73a8d8891468940455c (patch)
tree08872754e481771c2b8d82bd304567a077f89b73 /src/common/extended_trace.h
parentRemove the useless msg_handler compilation unit that was left over from Dolphin (diff)
downloadyuzu-9f7f1a227225c6dd5575e73a8d8891468940455c.tar
yuzu-9f7f1a227225c6dd5575e73a8d8891468940455c.tar.gz
yuzu-9f7f1a227225c6dd5575e73a8d8891468940455c.tar.bz2
yuzu-9f7f1a227225c6dd5575e73a8d8891468940455c.tar.lz
yuzu-9f7f1a227225c6dd5575e73a8d8891468940455c.tar.xz
yuzu-9f7f1a227225c6dd5575e73a8d8891468940455c.tar.zst
yuzu-9f7f1a227225c6dd5575e73a8d8891468940455c.zip
Diffstat (limited to 'src/common/extended_trace.h')
-rw-r--r--src/common/extended_trace.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/common/extended_trace.h b/src/common/extended_trace.h
deleted file mode 100644
index ed3113a24..000000000
--- a/src/common/extended_trace.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// -----------------------------------------------------------------------------------------
-//
-// Written by Zoltan Csizmadia, zoltan_csizmadia@yahoo.com
-// For companies(Austin,TX): If you would like to get my resume, send an email.
-//
-// The source is free, but if you want to use it, mention my name and e-mail address
-//
-// History:
-// 1.0 Initial version Zoltan Csizmadia
-// 1.1 WhineCube version Masken
-// 1.2 Dolphin version Masken
-//
-// ----------------------------------------------------------------------------------------
-
-#pragma once
-
-#if defined(WIN32)
-
-#include <windows.h>
-#include <tchar.h>
-
-#include <string>
-
-#pragma comment( lib, "imagehlp.lib" )
-
-#define EXTENDEDTRACEINITIALIZE( IniSymbolPath ) InitSymInfo( IniSymbolPath )
-#define EXTENDEDTRACEUNINITIALIZE() UninitSymInfo()
-#define STACKTRACE(file) StackTrace( GetCurrentThread(), "", file)
-#define STACKTRACE2(file, eip, esp, ebp) StackTrace(GetCurrentThread(), "", file, eip, esp, ebp)
-// class File;
-
-BOOL InitSymInfo( PCSTR );
-BOOL UninitSymInfo();
-void StackTrace(HANDLE, char const* msg, FILE *file);
-void StackTrace(HANDLE, char const* msg, FILE *file, DWORD eip, DWORD esp, DWORD ebp);
-
-// functions by Masken
-void etfprintf(FILE *file, const char *format, ...);
-void etfprint(FILE *file, const std::string &text);
-#define UEFBUFSIZE 2048
-extern char g_uefbuf[UEFBUFSIZE];
-
-#else // not WIN32
-
-#define EXTENDEDTRACEINITIALIZE( IniSymbolPath ) ((void)0)
-#define EXTENDEDTRACEUNINITIALIZE() ((void)0)
-#define STACKTRACE(file) ((void)0)
-#define STACKTRACE2(file, eip, esp, ebp) ((void)0)
-
-#endif // WIN32