diff options
author | dscho <dscho> | 2007-04-06 08:58:30 +0000 |
---|---|---|
committer | dscho <dscho> | 2007-04-06 08:58:30 +0000 |
commit | 1060f747be30b8c4c5fb09f64349b300ef863303 (patch) | |
tree | 501f21e99cdd1e74f603fb7aa5959202445aad08 /rfb/rfb.h | |
parent | 12c6764f509cfcb012a6663e4d01dc618d2ae1a3 (diff) | |
download | libvncserver-1060f747be30b8c4c5fb09f64349b300ef863303.zip libvncserver-1060f747be30b8c4c5fb09f64349b300ef863303.tar.gz |
rfb.h: Do not misplace guards
This buglet made it impossible to double include rfb.h from C++.
Diffstat (limited to 'rfb/rfb.h')
-rw-r--r-- | rfb/rfb.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -965,8 +965,10 @@ extern rfbBool rfbSendTextChatMessage(rfbClientPtr cl, uint32_t length, char *bu -#endif #if(defined __cplusplus) } #endif + +#endif + |