mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-31 01:15:48 -04:00
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:
+3
-3
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user