mirror of https://github.com/FreeRDP/FreeRDP
server/shadow: Fix compile error on win32.
This commit is contained in:
parent
20878e50fe
commit
7a59f09ecf
|
@ -204,7 +204,7 @@ typedef struct _SHADOW_MSG_OUT SHADOW_MSG_OUT;
|
|||
typedef void (*MSG_OUT_FREE_FN)(UINT32 id, SHADOW_MSG_OUT* msg);
|
||||
#define RDP_SHADOW_MSG_OUT_COMMON() \
|
||||
int refCount; \
|
||||
MSG_OUT_FREE_FN Free; /* function to free SHADOW_MSG_OUT */
|
||||
MSG_OUT_FREE_FN Free /* function to free SHADOW_MSG_OUT */
|
||||
|
||||
struct _SHADOW_MSG_OUT
|
||||
{
|
||||
|
|
|
@ -667,7 +667,7 @@ macShadowSubsystem* mac_shadow_subsystem_new()
|
|||
return subsystem;
|
||||
}
|
||||
|
||||
int Mac_ShadowSubsystemEntry(RDP_SHADOW_ENTRY_POINTS* pEntryPoints)
|
||||
FREERDP_API int Mac_ShadowSubsystemEntry(RDP_SHADOW_ENTRY_POINTS* pEntryPoints)
|
||||
{
|
||||
pEntryPoints->New = (pfnShadowSubsystemNew) mac_shadow_subsystem_new;
|
||||
pEntryPoints->Free = (pfnShadowSubsystemFree) mac_shadow_subsystem_free;
|
||||
|
|
|
@ -525,7 +525,7 @@ winShadowSubsystem* win_shadow_subsystem_new()
|
|||
return subsystem;
|
||||
}
|
||||
|
||||
int Win_ShadowSubsystemEntry(RDP_SHADOW_ENTRY_POINTS* pEntryPoints)
|
||||
FREERDP_API int Win_ShadowSubsystemEntry(RDP_SHADOW_ENTRY_POINTS* pEntryPoints)
|
||||
{
|
||||
pEntryPoints->New = (pfnShadowSubsystemNew) win_shadow_subsystem_new;
|
||||
pEntryPoints->Free = (pfnShadowSubsystemFree) win_shadow_subsystem_free;
|
||||
|
|
|
@ -1377,7 +1377,7 @@ void x11_shadow_subsystem_free(x11ShadowSubsystem* subsystem)
|
|||
free(subsystem);
|
||||
}
|
||||
|
||||
int X11_ShadowSubsystemEntry(RDP_SHADOW_ENTRY_POINTS* pEntryPoints)
|
||||
FREERDP_API int X11_ShadowSubsystemEntry(RDP_SHADOW_ENTRY_POINTS* pEntryPoints)
|
||||
{
|
||||
pEntryPoints->New = (pfnShadowSubsystemNew) x11_shadow_subsystem_new;
|
||||
pEntryPoints->Free = (pfnShadowSubsystemFree) x11_shadow_subsystem_free;
|
||||
|
|
Loading…
Reference in New Issue