Index: [thread] [date] [subject] [author]
  From: Samuel A. Falvo II <kc5tja@dolphin.openprojects.net>
  To  : ggi-develop@eskimo.com
  Date: Mon, 8 Mar 1999 12:30:16 -0800

Portability of libggi and libgii themselves

Can libggi and libgii be ported to environments which do not have the POSIX
dlopen(), dlclose(), etc. functions?  Can libggi be ported to an environment
which, like AmigaOS, uses libraries which must be explicitly opened by the
application?  For example:

	extern Library *GGIBase;

	void OpenLibs()
	{
	   GGIBase = OpenLibrary( "ggi.library", 0 );
	   if( !GGIBase )
	   {
	      fprintf( stderr, "Couldn't open libggi!\n" );
	      exit( -1 );
	   }
	}

Just wondering, as Dolphin will bare far more resemblence to AmigaOS
architecturally speaking than Linux/POSIX.

==========================================================================
      KC5TJA/6     |                  -| TEAM DOLPHIN |-
        DM13       |                  Samuel A. Falvo II
    QRP-L #1447    |          http://www.dolphin.openprojects.net
   Oceanside, CA   |......................................................

Index: [thread] [date] [subject] [author]