| 1319 | /************************* more *******************************/ |
| 1320 | |
| 1321 | void |
| 1322 | send_key(int key) |
| 1323 | { |
| 1324 | int buf[8]; |
| 1325 | |
| 1326 | buf[3] = 0; /* No Shift/Ctrl/Alt */ |
| 1327 | buf[4] = key; |
| 1328 | AvSendMsg(ap_id, AV_SENDKEY, buf); |
| 1329 | } |
| 1330 | |
| 1331 | void |
| 1332 | send_return() |
no outgoing calls
no test coverage detected