diff options
author | Camil Staps | 2015-07-01 17:36:37 +0200 |
---|---|---|
committer | Camil Staps | 2015-07-01 17:36:37 +0200 |
commit | 7553b7f9d4dddc2235c137d41de8ce22547bebe3 (patch) | |
tree | 34f8fb4b36640317d728a60586424f67f9befbe7 /osmouse.icl | |
parent | gitignore (diff) |
Initial commit
Diffstat (limited to 'osmouse.icl')
-rw-r--r-- | osmouse.icl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/osmouse.icl b/osmouse.icl new file mode 100644 index 0000000..835ab0c --- /dev/null +++ b/osmouse.icl @@ -0,0 +1,8 @@ +implementation module osmouse
+
+from ostoolbox import :: OSToolbox
+
+// RWS ??? returned resolution
+osGetDoubleClickTime :: !*OSToolbox -> (!Int, !*OSToolbox)
+osGetDoubleClickTime toolbox
+ = (0, toolbox)
|