mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 1161166 - Move some implementation out of ipc headres to not include headres for EndianU32_* r=billm
This commit is contained in:
parent
91ddd8126d
commit
2904241ed7
@ -10,8 +10,6 @@
|
||||
#include <servers/bootstrap.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
#include <CoreServices/CoreServices.h>
|
||||
|
||||
#include "base/basictypes.h"
|
||||
|
||||
//==============================================================================
|
||||
@ -145,16 +143,12 @@ class MachMessage {
|
||||
return GetDataLength() > 0 ? GetDataPacket()->data : NULL;
|
||||
}
|
||||
|
||||
u_int32_t GetDataLength() {
|
||||
return EndianU32_LtoN(GetDataPacket()->data_length);
|
||||
}
|
||||
u_int32_t GetDataLength();
|
||||
|
||||
// The message ID may be used as a code identifying the type of message
|
||||
void SetMessageID(int32_t message_id) {
|
||||
GetDataPacket()->id = EndianU32_NtoL(message_id);
|
||||
}
|
||||
void SetMessageID(int32_t message_id);
|
||||
|
||||
int32_t GetMessageID() { return EndianU32_LtoN(GetDataPacket()->id); }
|
||||
int32_t GetMessageID();
|
||||
|
||||
// Adds a descriptor (typically a mach port) to be translated
|
||||
// returns true if successful, otherwise not enough space
|
||||
|
@ -59,6 +59,21 @@ MachMessage::~MachMessage() {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
u_int32_t MachMessage::GetDataLength() {
|
||||
return EndianU32_LtoN(GetDataPacket()->data_length);
|
||||
}
|
||||
|
||||
// The message ID may be used as a code identifying the type of message
|
||||
void MachMessage::SetMessageID(int32_t message_id) {
|
||||
GetDataPacket()->id = EndianU32_NtoL(message_id);
|
||||
}
|
||||
|
||||
int32_t MachMessage::GetMessageID() {
|
||||
return EndianU32_LtoN(GetDataPacket()->id);
|
||||
}
|
||||
|
||||
|
||||
//==============================================================================
|
||||
// returns true if successful
|
||||
bool MachMessage::SetData(const void* data,
|
||||
|
Loading…
Reference in New Issue
Block a user