* Note; theWindow may very well be null here, since keyDown may call * it when theres no window !!! */ NOT_IN_CARBON */
| 2981 | */ |
| 2982 | /* NOT_IN_CARBON */ |
| 2983 | static void |
| 2984 | GeneralKey(EventRecord *theEvent, WindowPtr theWindow) |
| 2985 | { |
| 2986 | #if defined(__SC__) || defined(__MRC__) |
| 2987 | #pragma unused(theWindow) |
| 2988 | #endif |
| 2989 | #if 0 |
| 2990 | trans_num_keys (theEvent); |
| 2991 | #endif |
| 2992 | AddToKeyQueue(topl_resp_key(theEvent->message & 0xff), TRUE); |
| 2993 | } |
| 2994 | |
| 2995 | static void |
| 2996 | HandleKey(EventRecord *theEvent) |
no test coverage detected