diff options
author | dscho <dscho> | 2001-10-18 23:37:30 +0000 |
---|---|---|
committer | dscho <dscho> | 2001-10-18 23:37:30 +0000 |
commit | d44e3af64b3e224cdc2cba2549a9e84caefc2137 (patch) | |
tree | 292623a96fadac19145f5c85832bb5b03f5cf80e /rfb.h | |
parent | 8e9f427a779eda4fe89d39b254a6ed475155dd00 (diff) | |
download | libtdevnc-d44e3af64b3e224cdc2cba2549a9e84caefc2137.tar.gz libtdevnc-d44e3af64b3e224cdc2cba2549a9e84caefc2137.zip |
add rfbDrawLine, rfbDrawPixel and vncev, an xev "lookalike"
Diffstat (limited to 'rfb.h')
-rw-r--r-- | rfb.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -702,7 +702,10 @@ void rfbFreeFont(rfbFontDataPtr font); /* draw.c */ +/* You have to call rfbUndrawCursor before using these functions */ void rfbFillRect(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2,Pixel col); +void rfbDrawPixel(rfbScreenInfoPtr s,int x,int y,Pixel col); +void rfbDrawLine(rfbScreenInfoPtr s,int x1,int y1,int x2,int y2,Pixel col); /* selbox.c */ |