this is a more "clean" conversion to 64 bit than the type-fixups branch, which does borrow some elements from it but has far less find and replace...it is about 98-99% done, notes to follow later

This commit is contained in:
DarthArgus
2017-01-24 03:35:59 +00:00
parent 42b949c3dc
commit 36686348e9
458 changed files with 2282 additions and 2367 deletions
@@ -6,17 +6,17 @@ namespace NAMESPACE
#endif
namespace GenericAPI
{
GenericMessage::GenericMessage(short type)
GenericMessage::GenericMessage(int16_t type)
: m_type(type)
{
}
GenericRequest::GenericRequest(short type)
GenericRequest::GenericRequest(int16_t type)
: GenericMessage(type)
{
}
GenericResponse::GenericResponse(short type, unsigned result, void *user)
GenericResponse::GenericResponse(int16_t type, unsigned result, void *user)
: GenericMessage(type),
m_result(result),
m_user(user),