ULONG type replaced

This commit is contained in:
alexeevdv
2015-02-15 18:28:27 +03:00
parent eb96e5ecfe
commit 087ef7674b
22 changed files with 133 additions and 134 deletions
+2 -2
View File
@@ -61,7 +61,7 @@ void COpcode::Serialize(CArchive& ar)
}
}
void COpcode::Expect(CArchive& ar, uint16_t wOperator, bool bArgumentFound, ULONG ulArgument)
void COpcode::Expect(CArchive& ar, uint16_t wOperator, bool bArgumentFound, uint32_t ulArgument)
{
Serialize(ar);
@@ -141,7 +141,7 @@ void COpcode::SetOperator(uint16_t op)
m_wOperator = op;
}
ULONG COpcode::GetArgument() const
uint32_t COpcode::GetArgument() const
{
return m_ulArgument;
}