debugger: Formatting;

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2019-01-18 17:04:34 +01:00
parent 2196cb8419
commit f713369a01
16 changed files with 949 additions and 824 deletions
+15 -15
View File
@@ -2,28 +2,28 @@
#ifndef STDAFX_H
#define STDAFX_H
#pragma warning(disable:4786)
#pragma warning(disable : 4786)
#include <afxwin.h> // Core
#include <afxcmn.h> // Common Controls
#include <afxrich.h> // CRich edit
#include <afxcmn.h> // Common Controls
#include <afxrich.h> // CRich edit
#include <afxwin.h> // Core
#include <map>
#include <list>
#include <vector>
#include <map>
#include <string>
#include <vector>
using namespace std;
//some stuff that should be in std libs
int atoi( const string &s );
double atof( const string &s );
string itoa( int n );
string ftoa( float n );
string tolower( const string &s );
string toupper( const string &s );
string fullfilename( const string &t );
string filenamepath( const string &t );
string filenamefile( const string &t );
int atoi(const string& s);
double atof(const string& s);
string itoa(int n);
string ftoa(float n);
string tolower(const string& s);
string toupper(const string& s);
string fullfilename(const string& t);
string filenamepath(const string& t);
string filenamefile(const string& t);
#endif