Blame channels/rail/client/rail_orders.h

Packit Service fa4841
/**
Packit Service fa4841
 * FreeRDP: A Remote Desktop Protocol Implementation
Packit Service fa4841
 * Remote Applications Integrated Locally (RAIL)
Packit Service fa4841
 *
Packit Service fa4841
 * Copyright 2009 Marc-Andre Moreau <marcandre.moreau@gmail.com>
Packit Service fa4841
 * Copyright 2011 Roman Barabanov <romanbarabanov@gmail.com>
Packit Service fa4841
 * Copyright 2015 Thincast Technologies GmbH
Packit Service fa4841
 * Copyright 2015 DI (FH) Martin Haimberger <martin.haimberger@thincast.com>
Packit Service fa4841
 *
Packit Service fa4841
 * Licensed under the Apache License, Version 2.0 (the "License");
Packit Service fa4841
 * you may not use this file except in compliance with the License.
Packit Service fa4841
 * You may obtain a copy of the License at
Packit Service fa4841
 *
Packit Service fa4841
 *     http://www.apache.org/licenses/LICENSE-2.0
Packit Service fa4841
 *
Packit Service fa4841
 * Unless required by applicable law or agreed to in writing, software
Packit Service fa4841
 * distributed under the License is distributed on an "AS IS" BASIS,
Packit Service fa4841
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Packit Service fa4841
 * See the License for the specific language governing permissions and
Packit Service fa4841
 * limitations under the License.
Packit Service fa4841
 */
Packit Service fa4841
Packit Service fa4841
#ifndef FREERDP_CHANNEL_RAIL_CLIENT_ORDERS_H
Packit Service fa4841
#define FREERDP_CHANNEL_RAIL_CLIENT_ORDERS_H
Packit Service fa4841
Packit Service fa4841
#include <freerdp/channels/log.h>
Packit Service fa4841
Packit Service fa4841
#include "rail_main.h"
Packit Service fa4841
Packit Service fa4841
#define TAG CHANNELS_TAG("rail.client")
Packit Service fa4841
Packit Service bb5c11
UINT rail_write_client_sysparam_order(wStream* s, const RAIL_SYSPARAM_ORDER* sysparam);
Packit Service bb5c11
Packit Service fa4841
UINT rail_order_recv(railPlugin* rail, wStream* s);
Packit Service fa4841
UINT rail_send_pdu(railPlugin* rail, wStream* s, UINT16 orderType);
Packit Service fa4841
Packit Service fa4841
UINT rail_send_handshake_order(railPlugin* rail, const RAIL_HANDSHAKE_ORDER* handshake);
Packit Service fa4841
UINT rail_send_handshake_ex_order(railPlugin* rail, const RAIL_HANDSHAKE_EX_ORDER* handshakeEx);
Packit Service fa4841
UINT rail_send_client_status_order(railPlugin* rail, const RAIL_CLIENT_STATUS_ORDER* clientStatus);
Packit Service fa4841
UINT rail_send_client_exec_order(railPlugin* rail, UINT16 flags,
Packit Service bb5c11
                                 const RAIL_UNICODE_STRING* exeOrFile, const RAIL_UNICODE_STRING* workingDir,
Packit Service fa4841
                                 const RAIL_UNICODE_STRING* arguments);
Packit Service fa4841
UINT rail_send_client_activate_order(railPlugin* rail, const RAIL_ACTIVATE_ORDER* activate);
Packit Service fa4841
UINT rail_send_client_sysmenu_order(railPlugin* rail, const RAIL_SYSMENU_ORDER* sysmenu);
Packit Service fa4841
UINT rail_send_client_syscommand_order(railPlugin* rail, const RAIL_SYSCOMMAND_ORDER* syscommand);
Packit Service fa4841
Packit Service fa4841
UINT rail_send_client_notify_event_order(railPlugin* rail,
Packit Service bb5c11
        const RAIL_NOTIFY_EVENT_ORDER* notifyEvent);
Packit Service fa4841
UINT rail_send_client_window_move_order(railPlugin* rail, const RAIL_WINDOW_MOVE_ORDER* windowMove);
Packit Service fa4841
UINT rail_send_client_get_appid_req_order(railPlugin* rail,
Packit Service bb5c11
        const RAIL_GET_APPID_REQ_ORDER* getAppIdReq);
Packit Service fa4841
UINT rail_send_client_langbar_info_order(railPlugin* rail,
Packit Service bb5c11
        const RAIL_LANGBAR_INFO_ORDER* langBarInfo);
Packit Service fa4841
Packit Service fa4841
#endif /* FREERDP_CHANNEL_RAIL_CLIENT_ORDERS_H */