| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #ifndef FREERDP_LIB_CORE_MESSAGE_H |
| #define FREERDP_LIB_CORE_MESSAGE_H |
| |
| #include <freerdp/freerdp.h> |
| #include <freerdp/message.h> |
| #include <freerdp/api.h> |
| |
| |
| |
| |
| |
| |
| |
| struct rdp_update_proxy |
| { |
| rdpUpdate* update; |
| |
| |
| |
| pBeginPaint BeginPaint; |
| pEndPaint EndPaint; |
| pSetBounds SetBounds; |
| pSynchronize Synchronize; |
| pDesktopResize DesktopResize; |
| pBitmapUpdate BitmapUpdate; |
| pPalette Palette; |
| pPlaySound PlaySound; |
| pSetKeyboardIndicators SetKeyboardIndicators; |
| pSetKeyboardImeStatus SetKeyboardImeStatus; |
| pRefreshRect RefreshRect; |
| pSuppressOutput SuppressOutput; |
| pSurfaceCommand SurfaceCommand; |
| pSurfaceBits SurfaceBits; |
| pSurfaceFrameMarker SurfaceFrameMarker; |
| pSurfaceFrameAcknowledge SurfaceFrameAcknowledge; |
| |
| |
| |
| pDstBlt DstBlt; |
| pPatBlt PatBlt; |
| pScrBlt ScrBlt; |
| pOpaqueRect OpaqueRect; |
| pDrawNineGrid DrawNineGrid; |
| pMultiDstBlt MultiDstBlt; |
| pMultiPatBlt MultiPatBlt; |
| pMultiScrBlt MultiScrBlt; |
| pMultiOpaqueRect MultiOpaqueRect; |
| pMultiDrawNineGrid MultiDrawNineGrid; |
| pLineTo LineTo; |
| pPolyline Polyline; |
| pMemBlt MemBlt; |
| pMem3Blt Mem3Blt; |
| pSaveBitmap SaveBitmap; |
| pGlyphIndex GlyphIndex; |
| pFastIndex FastIndex; |
| pFastGlyph FastGlyph; |
| pPolygonSC PolygonSC; |
| pPolygonCB PolygonCB; |
| pEllipseSC EllipseSC; |
| pEllipseCB EllipseCB; |
| |
| |
| |
| pCacheBitmap CacheBitmap; |
| pCacheBitmapV2 CacheBitmapV2; |
| pCacheBitmapV3 CacheBitmapV3; |
| pCacheColorTable CacheColorTable; |
| pCacheGlyph CacheGlyph; |
| pCacheGlyphV2 CacheGlyphV2; |
| pCacheBrush CacheBrush; |
| |
| |
| |
| pCreateOffscreenBitmap CreateOffscreenBitmap; |
| pSwitchSurface SwitchSurface; |
| pCreateNineGridBitmap CreateNineGridBitmap; |
| pFrameMarker FrameMarker; |
| pStreamBitmapFirst StreamBitmapFirst; |
| pStreamBitmapNext StreamBitmapNext; |
| pDrawGdiPlusFirst DrawGdiPlusFirst; |
| pDrawGdiPlusNext DrawGdiPlusNext; |
| pDrawGdiPlusEnd DrawGdiPlusEnd; |
| pDrawGdiPlusCacheFirst DrawGdiPlusCacheFirst; |
| pDrawGdiPlusCacheNext DrawGdiPlusCacheNext; |
| pDrawGdiPlusCacheEnd DrawGdiPlusCacheEnd; |
| |
| |
| |
| pWindowCreate WindowCreate; |
| pWindowUpdate WindowUpdate; |
| pWindowIcon WindowIcon; |
| pWindowCachedIcon WindowCachedIcon; |
| pWindowDelete WindowDelete; |
| pNotifyIconCreate NotifyIconCreate; |
| pNotifyIconUpdate NotifyIconUpdate; |
| pNotifyIconDelete NotifyIconDelete; |
| pMonitoredDesktop MonitoredDesktop; |
| pNonMonitoredDesktop NonMonitoredDesktop; |
| |
| |
| |
| pPointerPosition PointerPosition; |
| pPointerSystem PointerSystem; |
| pPointerColor PointerColor; |
| pPointerNew PointerNew; |
| pPointerCached PointerCached; |
| |
| HANDLE thread; |
| }; |
| |
| FREERDP_LOCAL int update_message_queue_process_message(rdpUpdate* update, |
| wMessage* message); |
| FREERDP_LOCAL int update_message_queue_free_message(wMessage* message); |
| |
| FREERDP_LOCAL int update_message_queue_process_pending_messages( |
| rdpUpdate* update); |
| |
| FREERDP_LOCAL rdpUpdateProxy* update_message_proxy_new(rdpUpdate* update); |
| FREERDP_LOCAL void update_message_proxy_free(rdpUpdateProxy* message); |
| |
| |
| |
| |
| |
| |
| |
| struct rdp_input_proxy |
| { |
| rdpInput* input; |
| |
| |
| |
| pSynchronizeEvent SynchronizeEvent; |
| pKeyboardEvent KeyboardEvent; |
| pUnicodeKeyboardEvent UnicodeKeyboardEvent; |
| pMouseEvent MouseEvent; |
| pExtendedMouseEvent ExtendedMouseEvent; |
| pFocusInEvent FocusInEvent; |
| pKeyboardPauseEvent KeyboardPauseEvent; |
| }; |
| |
| FREERDP_LOCAL int input_message_queue_process_message(rdpInput* input, |
| wMessage* message); |
| FREERDP_LOCAL int input_message_queue_free_message(wMessage* message); |
| FREERDP_LOCAL int input_message_queue_process_pending_messages(rdpInput* input); |
| |
| FREERDP_LOCAL rdpInputProxy* input_message_proxy_new(rdpInput* input); |
| FREERDP_LOCAL void input_message_proxy_free(rdpInputProxy* proxy); |
| |
| #endif |