libfreerdp-core: added function stubs for client data blocks (GCC)

This commit is contained in:
Marc-André Moreau
2011-07-04 22:02:00 -04:00
parent bd172ff55f
commit 14e45b940c
3 changed files with 78 additions and 1 deletions

View File

@@ -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;

View File

@@ -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)
{
}

View File

@@ -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 */