FreeRDP/winpr
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
..
include winpr: add some functions to use wStream in a static way 2018-10-17 19:07:48 +02:00
libwinpr winpr: add some functions to use wStream in a static way 2018-10-17 19:07:48 +02:00
test fix string format specifiers 2016-12-16 13:48:43 +01:00
tools Removed use of strcpy. 2018-08-27 14:34:09 +02:00
.gitignore Add library libwinpr-tools 2016-05-03 14:42:08 +02:00
CMakeLists.txt Merge pull request #4613 from kevans91/file64 2018-05-03 11:31:54 +02:00
winpr.pc.in Include major version number in library names 2017-01-16 11:11:58 +01:00
WinPRConfig.cmake.in build: remove FREERDP_MONOLITHIC_BUILD 2016-01-12 17:32:32 +01:00
wlog.7 Fix issues in wlog man page 2016-12-01 15:36:31 +01:00