(* os.sml * * COPYRIGHT (c) 1996 Bell Laboratories. * * Win32 OS interface * *) structure OS : OS = struct open OS (* open type-only structure to get types *) type syserror = int (* exception SysErr of (string * syserror option) *) exception SysErr = Assembly.SysErr fun errorName _ = "" fun errorMsg _ = "" fun syserror _ = raise Fail "OS.syserror unimplemented" structure FileSys = OS_FileSys structure Path = OS_Path structure Process = OS_Process structure IO = OS_IO end (* OS *) (* * $Log: os.sml,v $ * Revision 1.1.1.1 1999/12/03 19:59:42 dbm * Import of 110.0.6 src * * Revision 1.1.1.1 1997/01/14 01:38:26 george * Version 109.24 * *)