home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / DOGA / SOURCES / POLYEDIT.LZH / READER / MAIN.C < prev    next >
C/C++ Source or Header  |  1995-03-21  |  448b  |  35 lines

  1. /*
  2.  *        ファイル入出力関数
  3.  *
  4.  *        Copyright T.Kobayashi
  5.  */
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8. #include <string.h>
  9.  
  10. #include "lib.h"
  11. #include "matrix.h"
  12.  
  13. int        (**SystemFunc)();
  14.  
  15. extern    Function    Functions[] ;
  16.  
  17. Library    lib = {
  18.     "Reader Library",
  19.     Functions,
  20.     0, 5, 0,
  21.     "",
  22.     0,
  23. };
  24.  
  25. extern    void    _LibraryInit( Library* );
  26.  
  27. Library    *start( libary )
  28. Library    **libary ;
  29. {
  30.     _LibraryInit( libary[1] );
  31.  
  32.     return &lib ;
  33. }
  34.  
  35.