Remove STUB, add notes.

This commit is contained in:
Michael Jumper 2013-07-19 18:43:51 -07:00
parent 9b9481d072
commit 7661f465e5

View File

@ -36,12 +36,17 @@
#include "winpr-stream.h"
/*
* NOTE: Because the old API did not support local allocation of the buffer
* for each stream, these compatibility implementations ignore
* the parameters of Stream_New() and Stream_Free() that provide them.
*/
wStream* Stream_New(BYTE* buffer, size_t size) {
/* STUB */
return stream_new(size);
}
void Stream_Free(wStream* s, BOOL bFreeBuffer) {
/* STUB */
stream_free(s);
}