10 lines
161 B
Standard ML
10 lines
161 B
Standard ML
structure InputMsg =
|
|
struct
|
|
datatype t =
|
|
CHAR_EVENT of char
|
|
| KEY_ESC
|
|
| KEY_ENTER
|
|
| RESIZE_EVENT of int * int
|
|
| WITH_SEARCH_LIST of int vector
|
|
end
|