home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / INCLUDE / UFUNCOD.H < prev    next >
C/C++ Source or Header  |  1990-04-05  |  768b  |  33 lines

  1. /*
  2.     ufuncod.h
  3.  
  4.     % private header for ufunc bob object class
  5.  
  6.     C-scape 3.2
  7.     Copyright (c) 1988, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.      Revision History:
  11.     -----------------
  12.     11/21/89 ted    Renamed ufunc xd and od bob kernels from cd to bd.
  13. */
  14.  
  15. #include "winod.h"                /* get bob parent stuff */
  16.  
  17. typedef struct _ufuncod {
  18.     bob_od        bd;                 /* the bob object superclass od */
  19.     ufunc_fptr     ufunc;            /* the user function */
  20.     int            idata;            /* integer data for the user function */
  21.  
  22. } ufunc_od;
  23.  
  24. #define ufuncod_GetSelf(ufd)            (bobod_GetSelf(&(ufd)->bd))
  25.  
  26. /* -------------------------------------------------------------------------- */
  27. /* Request funcs */
  28.  
  29. OEXTERN objreq_fptr ufuncreq_loadfptr;
  30. OEXTERN objreq_fptr ufuncreq_savefptr;
  31.  
  32.  
  33.