+2000-01-28 Gary V. Vaughan <gary@oranda.demon.co.uk>
+
+ * libltdl/ltdl.h (ltdl_error_table): Added missing error code, and
+ fixed typo in another code.
+ * doc/libtool.texi (Libltdl interface): Added missing @end
+ clause.
+
2000-01-27 Thomas Tanner <tanner@ffii.org>
* ltconfig.in: Oops, replace the remaining $objdir's
if (lt_dlseterror (LTDL_ERROR_NO_MEMORY) != 0)
perror (lt_dlerror ());
@end example
+@end deftypefun
@deftypefun int lt_dlpreload (const lt_dlsymlist *@var{preloaded})
Register the list of preloaded modules @var{preloaded}.
LTDL_ERROR(NO_MEMORY, "not enough memory") \
LTDL_ERROR(INVALID_HANDLE, "invalid module handle") \
LTDL_ERROR(BUFFER_OVERFLOW, "internal buffer overflow") \
- LTDL_ERROR(SHUTDOWN, "library already sutdown")
+ LTDL_ERROR(INVALID_ERRORCODE, "invalid errorcode") \
+ LTDL_ERROR(SHUTDOWN, "library already shutdown")
#ifdef __STDC__
# define LTDL_ERROR(name, diagnostic) LTDL_ERROR_##name,