2012-10-09 03:54:11 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* Client Channels
|
|
|
|
*
|
|
|
|
* 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 15:01:41 +03:00
|
|
|
#ifndef FREERDP_CHANNELS_CLIENT_H
|
|
|
|
#define FREERDP_CHANNELS_CLIENT_H
|
2012-10-09 03:54:11 +04:00
|
|
|
|
|
|
|
#include <freerdp/api.h>
|
2012-11-18 07:03:04 +04:00
|
|
|
#include <freerdp/addin.h>
|
2012-10-19 21:10:42 +04:00
|
|
|
#include <freerdp/channels/channels.h>
|
2012-10-09 03:54:11 +04:00
|
|
|
|
2013-01-20 06:54:53 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-10-16 20:41:16 +04:00
|
|
|
FREERDP_API void* freerdp_channels_client_find_static_entry(const char* name, const char* identifier);
|
2019-02-07 16:23:14 +03:00
|
|
|
FREERDP_API PVIRTUALCHANNELENTRY freerdp_channels_load_static_addin_entry(LPCSTR pszName, LPCSTR pszSubsystem, LPCSTR pszType, DWORD dwFlags);
|
2012-10-09 03:54:11 +04:00
|
|
|
|
2019-02-07 16:23:14 +03:00
|
|
|
FREERDP_API FREERDP_ADDIN** freerdp_channels_list_addins(LPCSTR lpName, LPCSTR lpSubsystem, LPCSTR lpType, DWORD dwFlags);
|
2012-11-04 07:33:10 +04:00
|
|
|
FREERDP_API void freerdp_channels_addin_list_free(FREERDP_ADDIN** ppAddins);
|
2012-11-04 07:04:04 +04:00
|
|
|
|
2013-01-20 06:54:53 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
#endif /* FREERDP_CHANNELS_CLIENT_H */
|
2012-10-09 03:54:11 +04:00
|
|
|
|