| 39 | |
| 40 | InputObject(); |
| 41 | ~InputObject() |
| 42 | { |
| 43 | if (onEnd) |
| 44 | onEnd->Release(); |
| 45 | if (onKeyDown) |
| 46 | onKeyDown->Release(); |
| 47 | if (onChar) |
| 48 | onChar->Release(); |
| 49 | if (onKeyUp) |
| 50 | onKeyUp->Release(); |
| 51 | } |
| 52 | |
| 53 | static Object *Create(); |
| 54 | ResultType Setup(LPTSTR aOptions, LPTSTR aEndKeys, LPTSTR aMatchList, size_t aMatchList_length); |