예제 #1
0
BOOL rail_recv_server_localmovesize_order(rdpRailOrder* rail_order, wStream* s)
{
	if (!rail_read_server_localmovesize_order(s, &rail_order->localmovesize))
		return FALSE;

	rail_send_channel_event(rail_order->plugin,
		RailChannel_ServerLocalMoveSize, &rail_order->localmovesize);

	return TRUE;
}
예제 #2
0
파일: rail_orders.c 프로젝트: C4rt/FreeRDP
BOOL rail_recv_server_localmovesize_order(railPlugin* rail, RAIL_LOCALMOVESIZE_ORDER* localMoveSize, wStream* s)
{
	RailClientContext* context = rail_get_client_interface(rail);

	if (!rail_read_server_localmovesize_order(s, localMoveSize))
		return FALSE;

	if (context->custom)
	{
		IFCALL(context->ServerLocalMoveSize, context, localMoveSize);
	}

	return TRUE;
}
예제 #3
0
void rail_recv_server_localmovesize_order(rdpRailOrder* rail_order, STREAM* s)
{
	rail_read_server_localmovesize_order(s, &rail_order->localmovesize);
	rail_send_channel_event(rail_order->plugin,
		RDP_EVENT_TYPE_RAIL_CHANNEL_SERVER_LOCALMOVESIZE, &rail_order->localmovesize);
}