home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / SOURCE / OWLSCR / BOBGO.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-03-28  |  483 b   |  31 lines

  1. /*
  2.     bobgo.c
  3.  
  4.     % bob_Go
  5.  
  6.     OWL 1.2
  7.     Copyright (c) 1989, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.      3/28/90 jmd    ansi-fied
  13. */
  14.  
  15. #include "oakhead.h"
  16. #include "disppriv.h"
  17.  
  18. int bob_Go(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.