mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
libfreerdp-core: added function stubs for client data blocks (GCC)
This commit is contained in:
@@ -56,7 +56,7 @@ typedef struct _FRDP_PEN
|
||||
}
|
||||
FRDP_PEN;
|
||||
|
||||
/* this is whats in the brush cache */
|
||||
/* this is what is in the brush cache */
|
||||
typedef struct _FRDP_BRUSHDATA
|
||||
{
|
||||
uint32 color_code;
|
||||
|
||||
@@ -133,3 +133,68 @@ gcc_write_create_conference_request(STREAM* s, STREAM* user_data)
|
||||
/* userData::value (OCTET_STRING) */
|
||||
per_write_octet_string(s, user_data->buffer, stream_get_length(user_data), 0); /* array of client data blocks */
|
||||
}
|
||||
|
||||
/**
|
||||
* Write a client core data block (TS_UD_CS_CORE).\n
|
||||
* @msdn{cc240510}
|
||||
* @param s stream
|
||||
* @param settings rdp settings
|
||||
*/
|
||||
|
||||
void
|
||||
gcc_write_client_core_data(STREAM* s, rdpSettings *settings)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Write a client security data block (TS_UD_CS_SEC).\n
|
||||
* @msdn{cc240511}
|
||||
* @param s stream
|
||||
* @param settings rdp settings
|
||||
*/
|
||||
|
||||
void
|
||||
gcc_write_client_security_data(STREAM* s, rdpSettings *settings)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Write a client network data block (TS_UD_CS_NET).\n
|
||||
* @msdn{cc240512}
|
||||
* @param s stream
|
||||
* @param settings rdp settings
|
||||
*/
|
||||
|
||||
void
|
||||
gcc_write_client_network_data(STREAM* s, rdpSettings *settings)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Write a client cluster data block (TS_UD_CS_CLUSTER).\n
|
||||
* @msdn{cc240514}
|
||||
* @param s stream
|
||||
* @param settings rdp settings
|
||||
*/
|
||||
|
||||
void
|
||||
gcc_write_client_cluster_data(STREAM* s, rdpSettings *settings)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Write a client monitor data block (TS_UD_CS_MONITOR).\n
|
||||
* @msdn{dd305336}
|
||||
* @param s stream
|
||||
* @param settings rdp settings
|
||||
*/
|
||||
|
||||
void
|
||||
gcc_write_client_monitor_data(STREAM* s, rdpSettings *settings)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
@@ -22,9 +22,21 @@
|
||||
|
||||
#include "per.h"
|
||||
|
||||
#include <freerdp/freerdp.h>
|
||||
#include <freerdp/utils/stream.h>
|
||||
|
||||
void
|
||||
gcc_write_create_conference_request(STREAM* s, STREAM* user_data);
|
||||
|
||||
void
|
||||
gcc_write_client_core_data(STREAM* s, rdpSettings *settings);
|
||||
void
|
||||
gcc_write_client_security_data(STREAM* s, rdpSettings *settings);
|
||||
void
|
||||
gcc_write_client_network_data(STREAM* s, rdpSettings *settings);
|
||||
void
|
||||
gcc_write_client_cluster_data(STREAM* s, rdpSettings *settings);
|
||||
void
|
||||
gcc_write_client_monitor_data(STREAM* s, rdpSettings *settings);
|
||||
|
||||
#endif /* __GCC_H */
|
||||
|
||||
Reference in New Issue
Block a user