Dump feature implemented

This commit is contained in:
alexeevdv
2015-02-13 22:31:52 +03:00
parent 529598ef70
commit bc52a43651
18 changed files with 193 additions and 141 deletions
+9 -4
View File
@@ -10,10 +10,15 @@
// COpcode::COpcodeAttributes
COpcode::COpcodeAttributes::COpcodeAttributes(LPCTSTR lpszMnemonic, LPCTSTR lpszName, ULONG ulNumArgs,
Type type, Category category, ULONG *procArgs, ULONG numProcArgs) :
m_strMnemonic(lpszMnemonic),
m_strName(lpszName),
COpcode::COpcodeAttributes::COpcodeAttributes(std::string mnemonic,
std::string name,
ULONG ulNumArgs,
Type type,
Category category,
ULONG *procArgs,
ULONG numProcArgs) :
m_strMnemonic(mnemonic),
m_strName(name),
m_ulNumArgs(ulNumArgs),
m_Type(type),
m_Category(category),