Пример #1
0
/* Process a cached pointer PDU */
void
process_cached_pointer_pdu(STREAM s)
{
    uint16 cache_idx;

    in_uint16_le(s, cache_idx);
    ui_set_cursor(cache_get_cursor(cache_idx));
}
Пример #2
0
/* Process a cached pointer PDU */
void
process_cached_pointer_pdu(RDPCLIENT * This, STREAM s)
{
	uint16 cache_idx;

	in_uint16_le(s, cache_idx);
	ui_set_cursor(This, cache_get_cursor(This, cache_idx));
}