home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c185 / 2.ddi / OWLSRC.EXE / CSCAPE / SOURCE / BOBGO.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-08-13  |  461 b   |  31 lines

  1. /*
  2.     bobgo.c
  3.  
  4.     % bob_Go
  5.  
  6.     OWL
  7.     Copyright (c) 1989, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12. */
  13.  
  14. #include "oakhead.h"
  15. #include "disppriv.h"
  16.  
  17. int bob_Go(bob)
  18.     bob_type bob;
  19. /*
  20.     Sends a GOREQ message to a bob object.
  21.     Note that it will not send data to a ufunc.
  22.     In that case it is best to call the message directly.
  23. */
  24. {
  25.     int ret = 0;
  26.  
  27.     bob_Do(bob, WINM_GOREQ, NULL, &ret);
  28.  
  29.     return(ret);
  30. }
  31.