我使用 XLookupString 将键事件映射到 ASCII 字符串、keysym 和 ComposeStatus。
int XLookupString(event_structure, buffer_return, bytes_buffer, keysym_return, status_in_out)
XKeyEvent *event_structure;
char *buffer_return; /* Returns the resulting string (not NULL-terminated). Returned value of the function is the length of the string. */
int bytes_buffer;
KeySym *keysym_return;
XComposeStatus *status_in_out;
这是我的代码:
char mykey_string;
int arg = 0;
------------------------------------------------------------
case KeyPress:
XLookupString( &event.xkey, &mykey_string, 1, 0, 0 );
arg |= mykey_string;
但是在位运算中使用 'char' 变量,符号扩展会产生意想不到的结果。我可以防止这种情况吗?
谢谢