|
FreeRDP
|
#include <freerdp/config.h>#include <stdio.h>#include <stdlib.h>#include <freerdp/freerdp.h>#include <freerdp/gdi/gdi.h>#include <freerdp/gdi/region.h>#include <freerdp/gdi/dc.h>Functions | |
| HGDI_DC | gdi_GetDC (void) |
| Get the current device context (a new one is created each time). msdn{dd144871}. More... | |
| HGDI_DC | gdi_CreateDC (UINT32 format) |
| Create a device context. msdn{dd144871}. More... | |
| HGDI_DC | gdi_CreateCompatibleDC (HGDI_DC hdc) |
| Create a new device context compatible with the given device context. msdn{dd183489}. More... | |
| HGDIOBJECT | gdi_SelectObject (HGDI_DC hdc, HGDIOBJECT hgdiobject) |
| Select a GDI object in the current device context. msdn{dd162957}. More... | |
| BOOL | gdi_DeleteObject (HGDIOBJECT hgdiobject) |
| Delete a GDI object. msdn{dd183539}. More... | |
| BOOL | gdi_DeleteDC (HGDI_DC hdc) |
| Delete device context. msdn{dd183533}. More... | |
Create a new device context compatible with the given device context. msdn{dd183489}.
| hdc | device context |


| HGDI_DC gdi_CreateDC | ( | UINT32 | format | ) |
Create a device context. msdn{dd144871}.

| BOOL gdi_DeleteDC | ( | HGDI_DC | hdc | ) |
Delete device context. msdn{dd183533}.
| hdc | device context |

| BOOL gdi_DeleteObject | ( | HGDIOBJECT | hgdiobject | ) |
Delete a GDI object. msdn{dd183539}.
| hgdiobject | GDI object |

| HGDI_DC gdi_GetDC | ( | void | ) |
Get the current device context (a new one is created each time). msdn{dd144871}.


| HGDIOBJECT gdi_SelectObject | ( | HGDI_DC | hdc, |
| HGDIOBJECT | hgdiobject | ||
| ) |
Select a GDI object in the current device context. msdn{dd162957}.
| hdc | device context |
| hgdiobject | new selected GDI object |
