2012-11-28 12:47:04 -05:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* RPC Client
|
|
|
|
*
|
|
|
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-06-06 14:01:41 +02:00
|
|
|
#ifndef FREERDP_LIB_CORE_GATEWAY_RPC_CLIENT_H
|
|
|
|
#define FREERDP_LIB_CORE_GATEWAY_RPC_CLIENT_H
|
2012-11-28 12:47:04 -05:00
|
|
|
|
2018-09-27 16:42:27 +02:00
|
|
|
#include <winpr/wtypes.h>
|
2018-09-28 08:43:43 +02:00
|
|
|
#include <winpr/stream.h>
|
2016-08-10 09:12:55 +02:00
|
|
|
#include <freerdp/api.h>
|
|
|
|
|
2012-11-28 12:47:04 -05:00
|
|
|
#include "rpc.h"
|
|
|
|
|
2019-11-06 15:24:51 +01:00
|
|
|
FREERDP_LOCAL RpcClientCall* rpc_client_call_find_by_id(RpcClient* client, UINT32 CallId);
|
2012-12-07 21:09:55 -05:00
|
|
|
|
2016-08-10 09:12:55 +02:00
|
|
|
FREERDP_LOCAL void rpc_client_call_free(RpcClientCall* client_call);
|
2012-12-07 21:09:55 -05:00
|
|
|
|
2024-01-26 13:09:00 +01:00
|
|
|
WINPR_ATTR_MALLOC(rpc_client_call_free, 1)
|
|
|
|
FREERDP_LOCAL RpcClientCall* rpc_client_call_new(UINT32 CallId, UINT32 OpNum);
|
|
|
|
|
2021-10-15 11:45:08 +02:00
|
|
|
FREERDP_LOCAL int rpc_in_channel_send_pdu(RpcInChannel* inChannel, const BYTE* buffer,
|
|
|
|
size_t length);
|
2015-02-02 11:50:56 -05:00
|
|
|
|
2016-08-10 09:12:55 +02:00
|
|
|
FREERDP_LOCAL int rpc_client_in_channel_recv(rdpRpc* rpc);
|
|
|
|
FREERDP_LOCAL int rpc_client_out_channel_recv(rdpRpc* rpc);
|
2015-02-03 17:17:17 -05:00
|
|
|
|
2019-11-06 15:24:51 +01:00
|
|
|
FREERDP_LOCAL int rpc_client_receive_pipe_read(RpcClient* client, BYTE* buffer, size_t length);
|
2012-11-28 22:03:18 -05:00
|
|
|
|
2018-09-28 08:43:43 +02:00
|
|
|
FREERDP_LOCAL BOOL rpc_client_write_call(rdpRpc* rpc, wStream* s, UINT16 opnum);
|
2015-02-12 14:08:38 -05:00
|
|
|
|
2018-09-27 16:23:01 +02:00
|
|
|
FREERDP_LOCAL void rpc_client_free(RpcClient* client);
|
2012-11-28 13:38:01 -05:00
|
|
|
|
2024-01-26 13:09:00 +01:00
|
|
|
WINPR_ATTR_MALLOC(rpc_client_free, 1)
|
|
|
|
FREERDP_LOCAL RpcClient* rpc_client_new(rdpContext* context, UINT32 max_recv_frag);
|
|
|
|
|
2017-06-06 14:01:41 +02:00
|
|
|
#endif /* FREERDP_LIB_CORE_GATEWAY_RPC_CLIENT_H */
|