home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / ingres04.lzh / source / conf / sysmodfunc.c < prev    next >
Encoding:
C/C++ Source or Header  |  1985-01-23  |  447 b   |  30 lines

  1. # include    <ingres.h>
  2. # include    <aux.h>
  3. # include    <access.h>
  4. # include    <sccs.h>
  5. # include     <func.h>
  6.  
  7. SCCSID(@(#)sysmodfunc.c    8.1    12/31/84)
  8.  
  9. /*
  10. **  Configuration table for SYSMOD
  11. */
  12.  
  13. char    Qbuf[10000];
  14. int    QbufSize = sizeof Qbuf;
  15.  
  16. extern struct fn_def    KsortFn;
  17. extern struct fn_def    ModifyFn;
  18. extern struct fn_def    SysFuncFn;
  19.  
  20.  
  21. struct fn_def    *FuncVect[] =
  22. {
  23.     &SysFuncFn,
  24.     &ModifyFn,    
  25.     &KsortFn,
  26. };
  27.  
  28. int    NumFunc = sizeof FuncVect / sizeof FuncVect[0];
  29.  
  30.