FreeRDP
Loading...
Searching...
No Matches
shadow_surface.h
1
19#ifndef FREERDP_SERVER_SHADOW_SURFACE_H
20#define FREERDP_SERVER_SHADOW_SURFACE_H
21
22#include <freerdp/server/shadow.h>
23
24#include <winpr/crt.h>
25#include <winpr/synch.h>
26
27#ifdef __cplusplus
28extern "C"
29{
30#endif
31
32 void shadow_surface_free(rdpShadowSurface* surface);
33
34 WINPR_ATTR_MALLOC(shadow_surface_free, 1)
35 WINPR_ATTR_NODISCARD
36 rdpShadowSurface* shadow_surface_new(rdpShadowServer* server, UINT16 x, UINT16 y, UINT32 width,
37 UINT32 height);
38
39 BOOL shadow_surface_resize(rdpShadowSurface* surface, UINT16 x, UINT16 y, UINT32 width,
40 UINT32 height);
41
42#ifdef __cplusplus
43}
44#endif
45
46#endif /* FREERDP_SERVER_SHADOW_SURFACE_H */