home *** CD-ROM | disk | FTP | other *** search
- /* Basic shared library support */
-
- #include <osbind.h>
- #include "libs.h"
-
- Library LibSupportBase;
-
-
- /* Initialize shared library support */
-
- int
- InitLibSupport ()
- {
- register GetLibraryFunction find_lib;
-
- find_lib = (GetLibraryFunction)Setexc(LIB_FIND_VECTOR,-1L);
- if (find_lib)
- {
- LibSupportBase = (*find_lib)(LIBSUPPORT_NAME,LIBSUPPORT_VERSION);
- return (0L != LibSupportBase);
- }
- }
-