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

  1.  
  2. #include "_lib.h"
  3.  
  4. /*    dlib.c    */
  5. extern    Library    *start( void );
  6.  
  7. extern    Function    Functions[] ;
  8.  
  9. Library    lib = {
  10.     "Dynamic Librarian",
  11.     Functions,
  12.     1, 0, 1,
  13.     "",
  14.     0,
  15. };
  16.  
  17. int        (**SystemFunc)();
  18.  
  19. Library    *start()
  20. {
  21.     return &lib ;
  22. }
  23.