[codec,progressive] expose progressive simple

server implementations might require serializing messages to a simple
tile, so expose this function.
This commit is contained in:
akallabeth 2023-09-05 10:27:09 +02:00 committed by Bernhard Miklautz
parent 93502f9ece
commit 9a9db5b7f3
2 changed files with 5 additions and 2 deletions

View File

@ -62,6 +62,9 @@ extern "C"
UINT32 ThreadingFlags);
FREERDP_API void progressive_context_free(PROGRESSIVE_CONTEXT* progressive);
FREERDP_API BOOL progressive_rfx_write_message_progressive_simple(
PROGRESSIVE_CONTEXT* progressive, wStream* s, const RFX_MESSAGE* msg);
#ifdef __cplusplus
}
#endif

View File

@ -2640,8 +2640,8 @@ fail:
return rc;
}
static BOOL progressive_rfx_write_message_progressive_simple(PROGRESSIVE_CONTEXT* progressive,
wStream* s, const RFX_MESSAGE* msg)
BOOL progressive_rfx_write_message_progressive_simple(PROGRESSIVE_CONTEXT* progressive, wStream* s,
const RFX_MESSAGE* msg)
{
RFX_CONTEXT* context;