2002-10-30 02:27:45 +00:00
|
|
|
/*
|
|
|
|
objc-load.h - Dynamically load in Obj-C modules (Classes, Categories)
|
|
|
|
|
|
|
|
Copyright (C) 1993, 2002 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
Author: Adam Fedor
|
|
|
|
Date: 1993
|
|
|
|
|
|
|
|
This file is part of the GNUstep Objective-C Library.
|
1995-04-03 20:49:14 +00:00
|
|
|
|
2002-10-30 02:27:45 +00:00
|
|
|
This library is free software; you can redistribute it and/or
|
2007-09-14 11:36:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
2002-10-30 02:27:45 +00:00
|
|
|
License as published by the Free Software Foundation; either
|
2008-06-08 10:38:33 +00:00
|
|
|
version 2 of the License, or (at your option) any later version.
|
2002-10-30 02:27:45 +00:00
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2019-12-09 23:36:00 +00:00
|
|
|
Lesser General Public License for more details.
|
2002-10-30 02:27:45 +00:00
|
|
|
|
|
|
|
If you are interested in a warranty or support for this source code,
|
|
|
|
contact Scott Christley <scottc@net-community.com> for more information.
|
|
|
|
|
2007-09-14 11:36:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2002-10-30 02:27:45 +00:00
|
|
|
License along with this library; if not, write to the Free
|
2010-06-12 07:19:26 +00:00
|
|
|
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
2019-12-09 23:36:00 +00:00
|
|
|
Boston, MA 02110 USA.
|
2002-10-30 02:27:45 +00:00
|
|
|
*/
|
1995-04-03 20:49:14 +00:00
|
|
|
|
|
|
|
#ifndef __objc_load_h_INCLUDE
|
|
|
|
#define __objc_load_h_INCLUDE
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2023-10-30 14:30:06 +00:00
|
|
|
#include "Foundation/NSString.h"
|
2000-10-28 21:58:48 +00:00
|
|
|
|
2002-05-08 05:43:15 +00:00
|
|
|
#ifdef HAVE_DLADDR
|
2000-10-28 21:58:48 +00:00
|
|
|
#define LINKER_GETSYMBOL 1
|
|
|
|
#else
|
|
|
|
#define LINKER_GETSYMBOL 0
|
|
|
|
#endif
|
1995-04-03 20:49:14 +00:00
|
|
|
|
|
|
|
#endif /* __objc_load_h_INCLUDE */
|