コード例 #1
0
def input_idle(data):
    (value, ) = uvarintsDecode(data)
    return '%d' % value
コード例 #2
0
def input_idle(data):
    (value,) = uvarintsDecode(data)
    return '%d' % value
コード例 #3
0
def mouse_pos(data):
    (x, y) = uvarintsDecode(data)
    return '(%d, %d)' % (x, y)
コード例 #4
0
def mouse_pos(data):
    (x, y) = uvarintsDecode(data)
    return '(%d, %d)' % (x, y)