win32-glue.sml
来自「这是我们参加06年全国开源软件的竞赛作品」· SML 代码 · 共 32 行
SML
32 行
(* win32-glue.sml * * COPYRIGHT (c) 1998 Bell Labs, Lucent Technologies. * COPYRIGHT (c) 1995 AT&T Bell Laboratories. * COPYRIGHT (c) 1989-1991 John H. Reppy * * * The glue for the Win32 version of CML. *)structure Win32Glue : OS_GLUE = struct fun init () = TimeOut.reset() fun pollOS () = ( TimeOut.pollTime(); IOManager.pollIO(); ProcManager.pollProcs()) fun pause () = (case TimeOut.anyWaiting() of NONE => if (IOManager.anyWaiting() orelse ProcManager.anyWaiting()) then (Signals.pause(); true) else false(** NOTE: eventually, we should just go to sleep for the specified time **) | (SOME t) => (Signals.pause(); true) (* end case *)) fun shutdown () = TimeOut.reset() end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?