OnDataReceived function now uses a reference counted stream as argument.

This commit is contained in:
Armin Novak 2014-06-11 14:41:31 +02:00
parent 60b0d075e2
commit 49f360521c
1 changed files with 1 additions and 2 deletions

View File

@ -138,8 +138,7 @@ struct _IWTSVirtualChannelCallback
{
/* Notifies the user about data that is being received. */
int (*OnDataReceived) (IWTSVirtualChannelCallback* pChannelCallback,
UINT32 cbSize,
BYTE* pBuffer);
wStream *data);
/* Notifies the user that the channel has been closed. */
int (*OnClose) (IWTSVirtualChannelCallback* pChannelCallback);
};