xfreerdp: initial commit
This commit is contained in:
parent
efbbedfa70
commit
ad0fedeb9f
1
.gitignore
vendored
1
.gitignore
vendored
@ -25,5 +25,6 @@ docs/api
|
|||||||
*.so.*
|
*.so.*
|
||||||
*.dylib
|
*.dylib
|
||||||
cunit/test_freerdp
|
cunit/test_freerdp
|
||||||
|
client/X11/xfreerdp
|
||||||
client/test/freerdp-test
|
client/test/freerdp-test
|
||||||
client/DirectFB/dfreerdp
|
client/DirectFB/dfreerdp
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
# User Interfaces
|
# User Interfaces
|
||||||
|
add_subdirectory(X11)
|
||||||
add_subdirectory(test)
|
add_subdirectory(test)
|
||||||
|
|
||||||
# Build DirectFB Client
|
# Build DirectFB Client
|
||||||
|
37
client/X11/CMakeLists.txt
Normal file
37
client/X11/CMakeLists.txt
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
# FreeRDP: A Remote Desktop Protocol Client
|
||||||
|
# FreeRDP X11 Client
|
||||||
|
#
|
||||||
|
# Copyright 2011 O.S. Systems Software Ltda.
|
||||||
|
# Copyright 2011 Otavio Salvador <otavio@ossystems.com.br>
|
||||||
|
# Copyright 2011 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.
|
||||||
|
|
||||||
|
include_directories(../../libfreerdp-gdi)
|
||||||
|
include_directories(../../libfreerdp-kbd)
|
||||||
|
include_directories(../../libfreerdp-core)
|
||||||
|
include_directories(../../libfreerdp-cache)
|
||||||
|
include_directories(${DIRECTFB_INCLUDE_DIRS})
|
||||||
|
|
||||||
|
add_executable(xfreerdp
|
||||||
|
xf_event.c
|
||||||
|
xf_event.h
|
||||||
|
xfreerdp.c
|
||||||
|
xfreerdp.h)
|
||||||
|
|
||||||
|
target_link_libraries(xfreerdp freerdp-core)
|
||||||
|
target_link_libraries(xfreerdp freerdp-gdi)
|
||||||
|
target_link_libraries(xfreerdp freerdp-kbd)
|
||||||
|
target_link_libraries(xfreerdp freerdp-chanman)
|
||||||
|
target_link_libraries(xfreerdp freerdp-utils)
|
||||||
|
target_link_libraries(xfreerdp ${DIRECTFB_LIBRARIES})
|
52
client/X11/xf_event.c
Normal file
52
client/X11/xf_event.c
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
/**
|
||||||
|
* FreeRDP: A Remote Desktop Protocol Client
|
||||||
|
* X11 Event Handling
|
||||||
|
*
|
||||||
|
* Copyright 2011 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "keyboard.h"
|
||||||
|
#include <freerdp/kbd.h>
|
||||||
|
|
||||||
|
#include "xf_event.h"
|
||||||
|
|
||||||
|
void xf_keyboard_init()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void xf_send_mouse_event(rdpInput* input, boolean down, uint32 button, uint16 x, uint16 y)
|
||||||
|
{
|
||||||
|
uint16 flags;
|
||||||
|
|
||||||
|
flags = (down) ? PTR_FLAGS_DOWN : 0;
|
||||||
|
|
||||||
|
if (flags != 0)
|
||||||
|
input->MouseEvent(input, flags, x, y);
|
||||||
|
}
|
||||||
|
|
||||||
|
void xf_send_keyboard_event(rdpInput* input, boolean down, uint8 keycode)
|
||||||
|
{
|
||||||
|
uint16 flags;
|
||||||
|
uint8 scancode;
|
||||||
|
boolean extended;
|
||||||
|
|
||||||
|
input->KeyboardEvent(input, flags, scancode);
|
||||||
|
}
|
||||||
|
|
||||||
|
boolean xf_event_process(freerdp* instance, void* event)
|
||||||
|
{
|
||||||
|
return True;
|
||||||
|
}
|
28
client/X11/xf_event.h
Normal file
28
client/X11/xf_event.h
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
/**
|
||||||
|
* FreeRDP: A Remote Desktop Protocol Client
|
||||||
|
* X11 Event Handling
|
||||||
|
*
|
||||||
|
* Copyright 2011 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __XF_EVENT_H
|
||||||
|
#define __XF_EVENT_H
|
||||||
|
|
||||||
|
#include "xfreerdp.h"
|
||||||
|
|
||||||
|
void xf_keyboard_init();
|
||||||
|
boolean xf_event_process(freerdp* instance, void* event);
|
||||||
|
|
||||||
|
#endif /* __XF_EVENT_H */
|
335
client/X11/xfreerdp.c
Normal file
335
client/X11/xfreerdp.c
Normal file
@ -0,0 +1,335 @@
|
|||||||
|
/**
|
||||||
|
* FreeRDP: A Remote Desktop Protocol Client
|
||||||
|
* X11 Client
|
||||||
|
*
|
||||||
|
* Copyright 2011 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <errno.h>
|
||||||
|
#include <pthread.h>
|
||||||
|
#include <sys/select.h>
|
||||||
|
#include <freerdp/utils/args.h>
|
||||||
|
#include <freerdp/utils/memory.h>
|
||||||
|
#include <freerdp/utils/semaphore.h>
|
||||||
|
#include <freerdp/utils/event.h>
|
||||||
|
#include <freerdp/constants.h>
|
||||||
|
|
||||||
|
#include "xf_event.h"
|
||||||
|
|
||||||
|
#include "xfreerdp.h"
|
||||||
|
|
||||||
|
freerdp_sem g_sem;
|
||||||
|
static int g_thread_count = 0;
|
||||||
|
|
||||||
|
struct thread_data
|
||||||
|
{
|
||||||
|
freerdp* instance;
|
||||||
|
};
|
||||||
|
|
||||||
|
void xf_begin_paint(rdpUpdate* update)
|
||||||
|
{
|
||||||
|
GDI* gdi;
|
||||||
|
|
||||||
|
gdi = GET_GDI(update);
|
||||||
|
gdi->primary->hdc->hwnd->invalid->null = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
void xf_end_paint(rdpUpdate* update)
|
||||||
|
{
|
||||||
|
GDI* gdi;
|
||||||
|
xfInfo* xfi;
|
||||||
|
|
||||||
|
gdi = GET_GDI(update);
|
||||||
|
xfi = GET_XFI(update);
|
||||||
|
|
||||||
|
if (gdi->primary->hdc->hwnd->invalid->null)
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
boolean xf_get_fds(freerdp* instance, void** rfds, int* rcount, void** wfds, int* wcount)
|
||||||
|
{
|
||||||
|
xfInfo* xfi = GET_XFI(instance);
|
||||||
|
|
||||||
|
return True;
|
||||||
|
}
|
||||||
|
|
||||||
|
boolean xf_check_fds(freerdp* instance, fd_set* set)
|
||||||
|
{
|
||||||
|
xfInfo* xfi;
|
||||||
|
|
||||||
|
return True;
|
||||||
|
}
|
||||||
|
|
||||||
|
boolean xf_pre_connect(freerdp* instance)
|
||||||
|
{
|
||||||
|
xfInfo* xfi;
|
||||||
|
rdpSettings* settings;
|
||||||
|
|
||||||
|
xfi = (xfInfo*) xzalloc(sizeof(xfInfo));
|
||||||
|
SET_XFI(instance, xfi);
|
||||||
|
|
||||||
|
settings = instance->settings;
|
||||||
|
|
||||||
|
settings->order_support[NEG_DSTBLT_INDEX] = True;
|
||||||
|
settings->order_support[NEG_PATBLT_INDEX] = True;
|
||||||
|
settings->order_support[NEG_SCRBLT_INDEX] = True;
|
||||||
|
settings->order_support[NEG_OPAQUE_RECT_INDEX] = True;
|
||||||
|
settings->order_support[NEG_DRAWNINEGRID_INDEX] = False;
|
||||||
|
settings->order_support[NEG_MULTIDSTBLT_INDEX] = False;
|
||||||
|
settings->order_support[NEG_MULTIPATBLT_INDEX] = False;
|
||||||
|
settings->order_support[NEG_MULTISCRBLT_INDEX] = False;
|
||||||
|
settings->order_support[NEG_MULTIOPAQUERECT_INDEX] = True;
|
||||||
|
settings->order_support[NEG_MULTI_DRAWNINEGRID_INDEX] = False;
|
||||||
|
settings->order_support[NEG_LINETO_INDEX] = True;
|
||||||
|
settings->order_support[NEG_POLYLINE_INDEX] = True;
|
||||||
|
settings->order_support[NEG_MEMBLT_INDEX] = True;
|
||||||
|
settings->order_support[NEG_MEM3BLT_INDEX] = False;
|
||||||
|
settings->order_support[NEG_SAVEBITMAP_INDEX] = True;
|
||||||
|
settings->order_support[NEG_GLYPH_INDEX_INDEX] = True;
|
||||||
|
settings->order_support[NEG_FAST_INDEX_INDEX] = True;
|
||||||
|
settings->order_support[NEG_FAST_GLYPH_INDEX] = True;
|
||||||
|
settings->order_support[NEG_POLYGON_SC_INDEX] = False;
|
||||||
|
settings->order_support[NEG_POLYGON_CB_INDEX] = False;
|
||||||
|
settings->order_support[NEG_ELLIPSE_SC_INDEX] = False;
|
||||||
|
settings->order_support[NEG_ELLIPSE_CB_INDEX] = False;
|
||||||
|
|
||||||
|
freerdp_chanman_pre_connect(GET_CHANMAN(instance), instance);
|
||||||
|
|
||||||
|
return True;
|
||||||
|
}
|
||||||
|
|
||||||
|
boolean xf_post_connect(freerdp* instance)
|
||||||
|
{
|
||||||
|
GDI* gdi;
|
||||||
|
xfInfo* xfi;
|
||||||
|
|
||||||
|
xfi = GET_XFI(instance);
|
||||||
|
SET_XFI(instance->update, xfi);
|
||||||
|
|
||||||
|
gdi_init(instance, CLRCONV_ALPHA | CLRBUF_16BPP | CLRBUF_32BPP);
|
||||||
|
gdi = GET_GDI(instance->update);
|
||||||
|
|
||||||
|
instance->update->BeginPaint = xf_begin_paint;
|
||||||
|
instance->update->EndPaint = xf_end_paint;
|
||||||
|
|
||||||
|
xf_keyboard_init();
|
||||||
|
|
||||||
|
freerdp_chanman_post_connect(GET_CHANMAN(instance), instance);
|
||||||
|
|
||||||
|
return True;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int xf_process_plugin_args(rdpSettings* settings, const char* name,
|
||||||
|
FRDP_PLUGIN_DATA* plugin_data, void* user_data)
|
||||||
|
{
|
||||||
|
rdpChanMan* chanman = (rdpChanMan*) user_data;
|
||||||
|
|
||||||
|
printf("Load plugin %s\n", name);
|
||||||
|
freerdp_chanman_load_plugin(chanman, settings, name, plugin_data);
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
xf_receive_channel_data(freerdp* instance, int channelId, uint8* data, int size, int flags, int total_size)
|
||||||
|
{
|
||||||
|
return freerdp_chanman_data(instance, channelId, data, size, flags, total_size);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
xf_process_cb_sync_event(rdpChanMan* chanman, freerdp* instance)
|
||||||
|
{
|
||||||
|
FRDP_EVENT* event;
|
||||||
|
FRDP_CB_FORMAT_LIST_EVENT* format_list_event;
|
||||||
|
|
||||||
|
event = freerdp_event_new(FRDP_EVENT_TYPE_CB_FORMAT_LIST, NULL, NULL);
|
||||||
|
|
||||||
|
format_list_event = (FRDP_CB_FORMAT_LIST_EVENT*)event;
|
||||||
|
format_list_event->num_formats = 0;
|
||||||
|
|
||||||
|
freerdp_chanman_send_event(chanman, "cliprdr", event);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
xf_process_channel_event(rdpChanMan* chanman, freerdp* instance)
|
||||||
|
{
|
||||||
|
FRDP_EVENT* event;
|
||||||
|
|
||||||
|
event = freerdp_chanman_pop_event(chanman);
|
||||||
|
if (event)
|
||||||
|
{
|
||||||
|
switch (event->event_type)
|
||||||
|
{
|
||||||
|
case FRDP_EVENT_TYPE_CB_SYNC:
|
||||||
|
xf_process_cb_sync_event(chanman, instance);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
printf("xf_process_channel_event: unknown event type %d\n", event->event_type);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
freerdp_event_free(event);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int dfreerdp_run(freerdp* instance)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
int fds;
|
||||||
|
int max_fds;
|
||||||
|
int rcount;
|
||||||
|
int wcount;
|
||||||
|
void* rfds[32];
|
||||||
|
void* wfds[32];
|
||||||
|
fd_set rfds_set;
|
||||||
|
fd_set wfds_set;
|
||||||
|
rdpChanMan* chanman;
|
||||||
|
|
||||||
|
memset(rfds, 0, sizeof(rfds));
|
||||||
|
memset(wfds, 0, sizeof(wfds));
|
||||||
|
|
||||||
|
chanman = GET_CHANMAN(instance);
|
||||||
|
|
||||||
|
instance->Connect(instance);
|
||||||
|
|
||||||
|
while (1)
|
||||||
|
{
|
||||||
|
rcount = 0;
|
||||||
|
wcount = 0;
|
||||||
|
|
||||||
|
if (instance->GetFileDescriptor(instance, rfds, &rcount, wfds, &wcount) != True)
|
||||||
|
{
|
||||||
|
printf("Failed to get FreeRDP file descriptor\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (freerdp_chanman_get_fds(chanman, instance, rfds, &rcount, wfds, &wcount) != True)
|
||||||
|
{
|
||||||
|
printf("Failed to get channel manager file descriptor\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (xf_get_fds(instance, rfds, &rcount, wfds, &wcount) != True)
|
||||||
|
{
|
||||||
|
printf("Failed to get dfreerdp file descriptor\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
max_fds = 0;
|
||||||
|
FD_ZERO(&rfds_set);
|
||||||
|
|
||||||
|
for (i = 0; i < rcount; i++)
|
||||||
|
{
|
||||||
|
fds = (int)(long)(rfds[i]);
|
||||||
|
|
||||||
|
if (fds > max_fds)
|
||||||
|
max_fds = fds;
|
||||||
|
|
||||||
|
FD_SET(fds, &rfds_set);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (max_fds == 0)
|
||||||
|
break;
|
||||||
|
|
||||||
|
if (select(max_fds + 1, &rfds_set, &wfds_set, NULL, NULL) == -1)
|
||||||
|
{
|
||||||
|
/* these are not really errors */
|
||||||
|
if (!((errno == EAGAIN) ||
|
||||||
|
(errno == EWOULDBLOCK) ||
|
||||||
|
(errno == EINPROGRESS) ||
|
||||||
|
(errno == EINTR))) /* signal occurred */
|
||||||
|
{
|
||||||
|
printf("dfreerdp_run: select failed\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (instance->CheckFileDescriptor(instance) != True)
|
||||||
|
{
|
||||||
|
printf("Failed to check FreeRDP file descriptor\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (xf_check_fds(instance, &rfds_set) != True)
|
||||||
|
{
|
||||||
|
printf("Failed to check dfreerdp file descriptor\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (freerdp_chanman_check_fds(chanman, instance) != True)
|
||||||
|
{
|
||||||
|
printf("Failed to check channel manager file descriptor\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
xf_process_channel_event(chanman, instance);
|
||||||
|
}
|
||||||
|
|
||||||
|
freerdp_chanman_close(chanman, instance);
|
||||||
|
freerdp_chanman_free(chanman);
|
||||||
|
freerdp_free(instance);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void* thread_func(void* param)
|
||||||
|
{
|
||||||
|
struct thread_data* data;
|
||||||
|
data = (struct thread_data*) param;
|
||||||
|
|
||||||
|
dfreerdp_run(data->instance);
|
||||||
|
|
||||||
|
xfree(data);
|
||||||
|
|
||||||
|
pthread_detach(pthread_self());
|
||||||
|
|
||||||
|
g_thread_count--;
|
||||||
|
|
||||||
|
if (g_thread_count < 1)
|
||||||
|
freerdp_sem_signal(&g_sem);
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc, char* argv[])
|
||||||
|
{
|
||||||
|
pthread_t thread;
|
||||||
|
freerdp* instance;
|
||||||
|
struct thread_data* data;
|
||||||
|
rdpChanMan* chanman;
|
||||||
|
|
||||||
|
freerdp_chanman_global_init();
|
||||||
|
|
||||||
|
g_sem = freerdp_sem_new(1);
|
||||||
|
|
||||||
|
instance = freerdp_new();
|
||||||
|
instance->PreConnect = xf_pre_connect;
|
||||||
|
instance->PostConnect = xf_post_connect;
|
||||||
|
instance->ReceiveChannelData = xf_receive_channel_data;
|
||||||
|
|
||||||
|
chanman = freerdp_chanman_new();
|
||||||
|
SET_CHANMAN(instance, chanman);
|
||||||
|
|
||||||
|
freerdp_parse_args(instance->settings, argc, argv, xf_process_plugin_args, chanman, NULL, NULL);
|
||||||
|
|
||||||
|
data = (struct thread_data*) xzalloc(sizeof(struct thread_data));
|
||||||
|
data->instance = instance;
|
||||||
|
|
||||||
|
g_thread_count++;
|
||||||
|
pthread_create(&thread, 0, thread_func, data);
|
||||||
|
|
||||||
|
while (g_thread_count > 0)
|
||||||
|
{
|
||||||
|
freerdp_sem_wait(g_sem);
|
||||||
|
}
|
||||||
|
|
||||||
|
freerdp_chanman_global_uninit();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
39
client/X11/xfreerdp.h
Normal file
39
client/X11/xfreerdp.h
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
/**
|
||||||
|
* FreeRDP: A Remote Desktop Protocol Client
|
||||||
|
* X11 Client
|
||||||
|
*
|
||||||
|
* Copyright 2011 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __XFREERDP_H
|
||||||
|
#define __XFREERDP_H
|
||||||
|
|
||||||
|
#include "gdi.h"
|
||||||
|
#include <freerdp/freerdp.h>
|
||||||
|
#include <freerdp/chanman.h>
|
||||||
|
|
||||||
|
#define SET_XFI(_instance, _xfi) (_instance)->param1 = _xfi
|
||||||
|
#define GET_XFI(_instance) ((xfInfo*) ((_instance)->param1))
|
||||||
|
|
||||||
|
#define SET_CHANMAN(_instance, _chanman) (_instance)->param2 = _chanman
|
||||||
|
#define GET_CHANMAN(_instance) ((rdpChanMan*) ((_instance)->param2))
|
||||||
|
|
||||||
|
struct xf_info
|
||||||
|
{
|
||||||
|
|
||||||
|
};
|
||||||
|
typedef struct xf_info xfInfo;
|
||||||
|
|
||||||
|
#endif /* __XFREERDP_H */
|
Loading…
Reference in New Issue
Block a user