diff options
author | dscho <dscho> | 2006-04-27 01:01:41 +0000 |
---|---|---|
committer | dscho <dscho> | 2006-04-27 01:01:41 +0000 |
commit | 21b1fd476fb9a3e3bc52097af6ea21fda0e09a46 (patch) | |
tree | 06d57c0a60e2a22655e3ee371154b9201469d394 /examples/pnmshow.c | |
parent | 6370f25f136d837b66f56080e34e7773e6e020c9 (diff) | |
download | libtdevnc-21b1fd476fb9a3e3bc52097af6ea21fda0e09a46.tar.gz libtdevnc-21b1fd476fb9a3e3bc52097af6ea21fda0e09a46.zip |
add rotate and flip example
Diffstat (limited to 'examples/pnmshow.c')
-rw-r--r-- | examples/pnmshow.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/pnmshow.c b/examples/pnmshow.c index 9e4a509..6268577 100644 --- a/examples/pnmshow.c +++ b/examples/pnmshow.c @@ -2,11 +2,13 @@ #include <rfb/rfb.h> #include <rfb/keysym.h> +#ifndef HAVE_HANDLEKEY static void HandleKey(rfbBool down,rfbKeySym key,rfbClientPtr cl) { if(down && (key==XK_Escape || key=='q' || key=='Q')) rfbCloseClient(cl); } +#endif int main(int argc,char** argv) { |