home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / developer-tools / aros / source / exec / library / src / oldopenlibrary.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-16  |  898 b   |  52 lines

  1. /*
  2.     (C) 1995, 96 AROS - The Amiga Replacement OS
  3.     $Id$
  4.     $Log$
  5.     Desc:
  6.     Lang: english
  7. */
  8. #include "exec_intern.h"
  9. #include <aros/libcall.h>
  10.  
  11. /*****************************************************************************
  12.  
  13.     NAME */
  14.     #include <exec/libraries.h>
  15.     #include <clib/exec_protos.h>
  16.  
  17.     __AROS_LH1(struct Library *, OldOpenLibrary,
  18.  
  19. /*  SYNOPSIS */
  20.     __AROS_LA(UBYTE *, libName, A1),
  21.  
  22. /*  LOCATION */
  23.     struct ExecBase *, SysBase, 68, Exec)
  24.  
  25. /*  FUNCTION
  26.     This is the same function as OpenLibrary(), only that it uses 0 as
  27.     version number. This function is obsolete. Don't use it.
  28.  
  29.     INPUTS
  30.  
  31.     RESULT
  32.  
  33.     NOTES
  34.  
  35.     EXAMPLE
  36.  
  37.     BUGS
  38.  
  39.     SEE ALSO
  40.     OpenLibrary().
  41.  
  42.     INTERNALS
  43.  
  44.     HISTORY
  45.  
  46. *****************************************************************************/
  47. {
  48.     __AROS_FUNC_INIT
  49.     return OpenLibrary(libName,0);
  50.     __AROS_FUNC_EXIT
  51. } /* OldOpenLibrary */
  52.