FreeRDP/winpr/include
David Fort 13e2a8834d winpr: add some functions to use wStream in a static way
It's sometime useful to create a stream aliasing a buffer on the stack, and
it's nice if we don't need some extra malloc for this.

Example use:
   BYTE buffer[20];
   wStream s;

   Stream_StaticInit(&s, buffer, sizeof(buffer));
   Stream_Write_UINT16(&s, 0xff01);
   Stream_Free(&s, FALSE);
2018-10-17 19:07:48 +02:00
..
winpr winpr: add some functions to use wStream in a static way 2018-10-17 19:07:48 +02:00
CMakeLists.txt Added cmake patch from @david-geiger 2016-01-21 15:30:55 +01:00