home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / DOGA / SOURCES / POLYEDIT.LZH / READER / READINIT.C < prev    next >
C/C++ Source or Header  |  1994-05-06  |  478b  |  31 lines

  1.  
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4.  
  5. #include "lib.h"
  6. #include "reader.h"
  7.  
  8. /*    _readinit.c    */
  9. extern    void    _ReaderInit( Library* );
  10.  
  11. extern    Library    **LibAry ;
  12. extern    int        (**SystemFunc)();
  13.  
  14. void    ReaderInit()
  15. {
  16.     int        id ;
  17.  
  18.     LibraryInit();
  19.     MatrixInit();
  20.  
  21.     id = LibraryGet( "Reader Library" );
  22.  
  23.     if ( id == 0 )
  24.     {
  25.         printf( "\'Reader\' ライブラリが常駐していません。\n" );
  26.         exit( 1 );
  27.     }
  28.     _ReaderInit( LibAry[id] );
  29.     __ReaderInit( SystemFunc );
  30. }
  31.