HDNes/hdnes/commonUtil.h
mkwong98 5ae36cc2c7 Add the rest of source code and doc
Added folder for C++ code. Added shaders, user manual, wxwidget files
and VS files
2014-06-25 22:40:29 +08:00

13 lines
313 B
C++

#pragma once
#include <vector>
using namespace std;
vector<string> split(const string &s, char delim, vector<string> &elems);
string removeSpace(const string &s);
string getROMDirPath();
string getROMName();
string getHDPackPath();
string getEditPackPath();
void writeLog(string s);
string int_to_hex(Uint16 i);