| 4600 | static struct inputcode inputcode_pending[MAX_PENDING_EVENTS]; |
| 4601 | |
| 4602 | static bool inputdevice_handle_inputcode_immediate(int code, int state) |
| 4603 | { |
| 4604 | if (!state) |
| 4605 | return false; |
| 4606 | switch(code) |
| 4607 | { |
| 4608 | case AKS_ENTERDEBUGGER: |
| 4609 | #ifdef DEBUGGER |
| 4610 | activate_debugger (); |
| 4611 | #endif |
| 4612 | return true; |
| 4613 | } |
| 4614 | return false; |
| 4615 | } |
| 4616 | |
| 4617 | |
| 4618 | void inputdevice_add_inputcode (int code, int state, const TCHAR *s) |
no test coverage detected