2024-10-06 10:23:07 +01:00
|
|
|
signature DRAW_MSG =
|
|
|
|
|
sig
|
|
|
|
|
datatype t =
|
|
|
|
|
REDRAW_TEXT of Real32.real vector
|
2024-10-09 11:22:39 +01:00
|
|
|
| REDRAW_CURSOR of Real32.real vector
|
2024-11-15 10:26:22 +00:00
|
|
|
| REDRAW_BG of Real32.real vector
|
2024-11-11 05:27:20 +00:00
|
|
|
| YANK of string
|
2024-10-06 10:23:07 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
structure DrawMsg :> DRAW_MSG =
|
2024-10-06 09:32:56 +01:00
|
|
|
struct
|
|
|
|
|
datatype t =
|
|
|
|
|
REDRAW_TEXT of Real32.real vector
|
2024-10-09 11:22:39 +01:00
|
|
|
| REDRAW_CURSOR of Real32.real vector
|
2024-11-15 10:26:22 +00:00
|
|
|
| REDRAW_BG of Real32.real vector
|
2024-11-11 05:27:20 +00:00
|
|
|
| YANK of string
|
2024-10-06 09:32:56 +01:00
|
|
|
end
|