1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html>
3
4<head>
5<title>Windows Interface Reference: Mouse structure</title>
6</head>
7
8<body>
9
10<h1>Mouse </h1>
11
12<p>The Mouse structure contains functions to control mouse input to a window.</p>
13
14<pre>structure Mouse :
15  sig
16    type HWND
17    type POINT = { x: int, y: int }
18    val DragDetect : HWND * POINT -&gt; bool
19    val GetCapture : unit -&gt; HWND option
20    val GetDoubleClickTime : unit -&gt; Time.time
21    val ReleaseCapture : unit -&gt; unit
22    val SetCapture : HWND -&gt; HWND option
23    val SetDoubleClickTime : Time.time -&gt; unit
24    val SwapMouseButton : bool -&gt; bool
25  end</pre>
26</body>
27</html>
28