Ignore:
Timestamp:
Aug 20, 2006, 8:11:44 AM (19 years ago)
Author:
bird
Message:

Expanded m_client to 64-bit. Finally managed to hack together a getKeyMap and fakeKey for PM.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/synergy/lib/platform/CMSWindowsKeyState.cpp

    r2753 r2768  
    11891189        switch (keystroke.m_type) {
    11901190        case Keystroke::kButton: {
    1191                 LOG((CLOG_DEBUG1 "  %03x (%08x) %s", keystroke.m_data.m_button.m_button, keystroke.m_data.m_button.m_client, keystroke.m_data.m_button.m_press ? "down" : "up"));
     1191                LOG((CLOG_DEBUG1 "  %03x (%08x) %s", keystroke.m_data.m_button.m_button, (UInt32)keystroke.m_data.m_button.m_client, keystroke.m_data.m_button.m_press ? "down" : "up"));
    11921192                KeyButton button = keystroke.m_data.m_button.m_button;
    11931193
     
    12001200
    12011201                // get the virtual key for the button
    1202                 UINT vk = keystroke.m_data.m_button.m_client;
     1202                UINT vk = (UINT)keystroke.m_data.m_button.m_client;
    12031203
    12041204                // special handling of VK_SNAPSHOT
Note: See TracChangeset for help on using the changeset viewer.