home *** CD-ROM | disk | FTP | other *** search
- /*
- bobgo.c
-
- % bob_Go
-
- OWL
- Copyright (c) 1989, by Oakland Group, Inc.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- */
-
- #include "oakhead.h"
- #include "disppriv.h"
-
- int bob_Go(bob)
- bob_type bob;
- /*
- Sends a GOREQ message to a bob object.
- Note that it will not send data to a ufunc.
- In that case it is best to call the message directly.
- */
- {
- int ret = 0;
-
- bob_Do(bob, WINM_GOREQ, NULL, &ret);
-
- return(ret);
- }
-