home *** CD-ROM | disk | FTP | other *** search
-
- /*
- ** $VER: LoadMouse.edge 1.1 (Sunday 08-Aug-93 02:46:15)
- **
- ** Load the mousebutton definition selected by the user
- **
- ** Written by Thomas liljetoft
- */
-
-
- options results
-
- /* get the users error-report level */
-
- getenvvar _ge_errlevel
- errlevel = result
-
- /* ask for a mouse button config file */
-
- 'requestfile' title '"Load mouse button definition..."' path "edgeprg:" file "edge.mousebuttons" getdir
- if RC == 0 then do
-
- /* ok, loadit. */
-
- 'loadmousebuttons' '"'result'"'
-
- end
-
- if RC >= errlevel then do
-
- /* something went wrong enought to be reported so report */
-
- 'fault'
- 'requestnotify' '"'result'"'
- end
-
- exit(0)
-
-