Added new FlushWithReply method. Mostly tested
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2011 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -14,13 +14,14 @@ class PortLinkData;
|
|||||||
|
|
||||||
class PortLink
|
class PortLink
|
||||||
{
|
{
|
||||||
typedef struct
|
class ReplyData
|
||||||
{
|
{
|
||||||
|
public:
|
||||||
|
ReplyData(void) { code=0; buffersize=0; buffer=NULL; }
|
||||||
int32 code;
|
int32 code;
|
||||||
ssize_t buffersize;
|
ssize_t buffersize;
|
||||||
int8 *buffer;
|
int8 *buffer;
|
||||||
|
};
|
||||||
} ReplyData;
|
|
||||||
public:
|
public:
|
||||||
PortLink(port_id port);
|
PortLink(port_id port);
|
||||||
PortLink(const PortLink &link);
|
PortLink(const PortLink &link);
|
||||||
|
|||||||
Reference in New Issue
Block a user