home *** CD-ROM | disk | FTP | other *** search
- /*
- sdsetmou.c
-
- % sed_SetMouse
-
- Attach a mouse handler to the sed
-
- C-scape 3.2
- Copyright (c) 1988, by Oakland Group, Inc.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- 12/16/88 jmd turned into functions
-
- 3/28/90 jmd ansi-fied
- */
-
- #include "sed.h"
-
- void sed_SetMouse(sed_type sed, mouhandler_fptr mhandler)
- /*
- Attach a mouse handling function to the sed.
- */
- {
- win_SetMouse(sed, mhandler);
- }
-