2011-07-28 21:46:36 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-28 21:46:36 +04:00
|
|
|
* DirectFB 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 __DFREERDP_H
|
|
|
|
#define __DFREERDP_H
|
|
|
|
|
2012-03-12 15:14:56 +04:00
|
|
|
#include "config.h"
|
2011-07-29 01:44:09 +04:00
|
|
|
#include <freerdp/freerdp.h>
|
2011-11-12 03:34:06 +04:00
|
|
|
#include <freerdp/graphics.h>
|
2011-08-15 22:33:04 +04:00
|
|
|
#include <freerdp/gdi/gdi.h>
|
2011-11-12 03:34:06 +04:00
|
|
|
#include <freerdp/codec/color.h>
|
2011-11-22 01:58:30 +04:00
|
|
|
#include <freerdp/channels/channels.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <directfb.h>
|
2011-07-28 21:46:36 +04:00
|
|
|
|
2011-10-16 08:50:10 +04:00
|
|
|
typedef struct df_info dfInfo;
|
2011-08-02 12:04:30 +04:00
|
|
|
|
2011-10-16 08:50:10 +04:00
|
|
|
struct df_context
|
|
|
|
{
|
|
|
|
rdpContext _p;
|
|
|
|
|
|
|
|
dfInfo* dfi;
|
|
|
|
rdpSettings* settings;
|
|
|
|
};
|
|
|
|
typedef struct df_context dfContext;
|
2011-07-28 21:46:36 +04:00
|
|
|
|
2011-11-12 03:34:06 +04:00
|
|
|
struct df_pointer
|
|
|
|
{
|
|
|
|
rdpPointer pointer;
|
|
|
|
IDirectFBSurface* surface;
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 xhot;
|
|
|
|
UINT32 yhot;
|
2011-11-12 03:34:06 +04:00
|
|
|
};
|
|
|
|
typedef struct df_pointer dfPointer;
|
|
|
|
|
2011-07-28 21:46:36 +04:00
|
|
|
struct df_info
|
|
|
|
{
|
|
|
|
int read_fds;
|
|
|
|
DFBResult err;
|
|
|
|
IDirectFB* dfb;
|
|
|
|
DFBEvent event;
|
2011-11-12 03:34:06 +04:00
|
|
|
HCLRCONV clrconv;
|
2011-07-28 21:46:36 +04:00
|
|
|
DFBRectangle update_rect;
|
|
|
|
DFBSurfaceDescription dsc;
|
|
|
|
IDirectFBSurface* primary;
|
|
|
|
IDirectFBSurface* surface;
|
|
|
|
IDirectFBDisplayLayer* layer;
|
|
|
|
IDirectFBEventBuffer* event_buffer;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __DFREERDP_H */
|