I use the x2vnc client to attach my laptop as a "second monitor" to my main linux box. This is works really well, except that the Windows logo and application keys don't currently work. The following patch makes these keys work (I'm using it right now to type this message

Many thanks
Chris Rodgers
Patch follows (against the cvs0908.zip download from sourceforge):
diff -cr cvs0908/ultravnc/winvnc/winvnc/vnckeymap.cpp cvs0908-with-changes/ultravnc/winvnc/winvnc/vnckeymap.cpp
*** cvs0908/ultravnc/winvnc/winvnc/vnckeymap.cpp Sun Sep 14 02:17:28 2003
--- cvs0908-with-changes/ultravnc/winvnc/winvnc/vnckeymap.cpp Fri Sep 3 19:22:35 2004
***************
*** 155,160 ****
--- 155,163 ----
{ XK_Control_R, VK_CONTROL, 1 },
{ XK_Alt_L, VK_MENU, 0 },
{ XK_Alt_R, VK_RMENU, 1 },
+ { XK_Super_L, VK_LWIN, 0 },
+ { XK_Super_R, VK_RWIN, 0 },
+ { XK_Menu, VK_APPS, 0 },
};