2011-08-04 19:22:58 +04:00
|
|
|
/**
|
2012-10-09 05:00:07 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* Device Redirection Virtual Channel
|
2011-08-04 19:22:58 +04:00
|
|
|
*
|
|
|
|
* Copyright 2010-2011 Vic Lee
|
2012-10-09 05:00:07 +04:00
|
|
|
* Copyright 2010-2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2015-06-03 14:38:47 +03:00
|
|
|
* Copyright 2015 Thincast Technologies GmbH
|
|
|
|
* Copyright 2015 DI (FH) Martin Haimberger <martin.haimberger@thincast.com>
|
2011-08-04 19:22:58 +04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2012-10-09 05:00:07 +04:00
|
|
|
#ifndef FREERDP_CHANNEL_RDPDR_CLIENT_DEVMAN_H
|
|
|
|
#define FREERDP_CHANNEL_RDPDR_CLIENT_DEVMAN_H
|
2011-08-04 19:22:58 +04:00
|
|
|
|
2013-10-17 23:42:51 +04:00
|
|
|
#include "rdpdr_main.h"
|
|
|
|
|
2014-02-14 11:09:55 +04:00
|
|
|
void devman_unregister_device(DEVMAN* devman, void* key);
|
2015-08-27 15:25:09 +03:00
|
|
|
UINT devman_load_device_service(DEVMAN* devman, RDPDR_DEVICE* device, rdpContext* rdpcontext);
|
2012-11-09 04:01:52 +04:00
|
|
|
DEVICE* devman_get_device_by_id(DEVMAN* devman, UINT32 id);
|
|
|
|
|
2013-10-17 23:42:51 +04:00
|
|
|
DEVMAN* devman_new(rdpdrPlugin* rdpdr);
|
2011-08-04 19:22:58 +04:00
|
|
|
void devman_free(DEVMAN* devman);
|
|
|
|
|
2012-10-09 05:00:07 +04:00
|
|
|
#endif /* FREERDP_CHANNEL_RDPDR_CLIENT_DEVMAN_H */
|