Got rid of Port::GetMessage[Size]().

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29564 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2009-03-17 00:46:40 +00:00
parent 60f4376e26
commit c1f05b2803
3 changed files with 9 additions and 21 deletions
@@ -36,9 +36,6 @@ public:
void* GetBuffer() const;
int32 GetCapacity() const;
void* GetMessage() const;
int32 GetMessageSize() const;
status_t Send(int32 size);
status_t Receive(void** _message, size_t* _size,
bigtime_t timeout = -1);
@@ -49,7 +46,6 @@ private:
Info fInfo;
uint8* fBuffer;
int32 fCapacity;
int32 fMessageSize;
status_t fInitStatus;
bool fOwner;
};