2014-08-13 03:22:42 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
*
|
|
|
|
* Copyright 2014 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_SERVER_SHADOW_WIN_WDS_H
|
|
|
|
#define FREERDP_SERVER_SHADOW_WIN_WDS_H
|
2014-08-13 03:22:42 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
#define WITH_WDS_API 1
|
2014-08-14 01:48:57 +04:00
|
|
|
|
|
|
|
#ifndef CINTERFACE
|
|
|
|
#define CINTERFACE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <rdpencomapi.h>
|
|
|
|
|
2014-08-16 00:06:08 +04:00
|
|
|
#ifndef DISPID_RDPAPI_EVENT_ON_BOUNDING_RECT_CHANGED
|
2019-11-06 17:24:51 +03:00
|
|
|
#define DISPID_RDPAPI_EVENT_ON_BOUNDING_RECT_CHANGED 340
|
2014-08-16 00:06:08 +04:00
|
|
|
#endif
|
|
|
|
|
2014-08-14 01:48:57 +04:00
|
|
|
#include "win_shadow.h"
|
|
|
|
|
2014-08-13 03:22:42 +04:00
|
|
|
#ifdef __cplusplus
|
2019-11-06 17:24:51 +03:00
|
|
|
extern "C"
|
|
|
|
{
|
2014-08-13 03:22:42 +04:00
|
|
|
#endif
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
int win_shadow_wds_init(winShadowSubsystem* subsystem);
|
|
|
|
int win_shadow_wds_uninit(winShadowSubsystem* subsystem);
|
2014-08-13 03:22:42 +04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
#endif /* FREERDP_SERVER_SHADOW_WIN_WDS_H */
|