diff options
author | dscho <dscho> | 2006-03-28 14:49:21 +0000 |
---|---|---|
committer | dscho <dscho> | 2006-03-28 14:49:21 +0000 |
commit | 1602b345f3e7e508b043133d5c289d9984e39f18 (patch) | |
tree | 0698f886cd49a803dcfbbd08ab5b4cd4c7a9fd73 /libvncclient/vncviewer.c | |
parent | 5920dc18d75a53690ed8690867f501c51595daf1 (diff) | |
download | libtdevnc-1602b345f3e7e508b043133d5c289d9984e39f18.tar.gz libtdevnc-1602b345f3e7e508b043133d5c289d9984e39f18.zip |
add KeyboardLedState extension
Diffstat (limited to 'libvncclient/vncviewer.c')
-rw-r--r-- | libvncclient/vncviewer.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libvncclient/vncviewer.c b/libvncclient/vncviewer.c index 8ad5928..635b987 100644 --- a/libvncclient/vncviewer.c +++ b/libvncclient/vncviewer.c @@ -116,7 +116,10 @@ rfbClient* rfbGetClient(int bitsPerSample,int samplesPerPixel, client->programName=""; client->serverHost=""; client->serverPort=5900; - + + client->CurrentKeyboardLedState = 0; + client->HandleKeyboardLedState = DummyPoint; + client->format.bitsPerPixel = bytesPerPixel*8; client->format.depth = bitsPerSample*samplesPerPixel; client->appData.requestedDepth=client->format.depth; @@ -171,6 +174,8 @@ rfbClient* rfbGetClient(int bitsPerSample,int samplesPerPixel, client->GetPassword = ReadPassword; client->MallocFrameBuffer = MallocFrameBuffer; client->Bell = Dummy; + client->CurrentKeyboardLedState = 0; + client->HandleKeyboardLedState = DummyPoint; return client; } |