예제 #1
0
파일: rdp.c 프로젝트: z0x010/rdesktop
/* 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
파일: rdp.c 프로젝트: hoangduit/reactos
/* 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));
}