home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / System / ReqToolsLib / Source / reqtools / rtlockprefs.c < prev    next >
Encoding:
C/C++ Source or Header  |  2001-07-02  |  959 b   |  62 lines

  1.  
  2. /*
  3.     (C) 1999 AROS - The Amiga Research OS
  4.     $Id: rtlockprefs.c,v 1.6 2001/04/12 09:11:46 iaint Exp $
  5.  
  6.     Desc:
  7.     Lang: English
  8. */
  9.  
  10. #include <exec/types.h>
  11. #include <proto/exec.h>
  12. #include <proto/reqtools.h>
  13. #include <proto/intuition.h>
  14. #include <exec/libraries.h>
  15. #include <exec/memory.h>
  16. #include <aros/libcall.h>
  17. #include "reqtools_intern.h"
  18. #include "general.h"
  19. #include "rtfuncs.h"
  20.  
  21. /*****************************************************************************
  22.  
  23.     NAME */
  24.  
  25.     AROS_LH0(struct ReqToolsPrefs *, rtLockPrefs,
  26.  
  27. /*  SYNOPSIS */
  28.  
  29. /*  LOCATION */
  30.  
  31.     struct ReqToolsBase *, ReqToolsBase, 28, ReqTools)
  32.  
  33. /*  FUNCTION
  34.  
  35.     INPUTS
  36.  
  37.     RESULT
  38.  
  39.     NOTES
  40.  
  41.     EXAMPLE
  42.  
  43.     BUGS
  44.  
  45.     SEE ALSO
  46.  
  47.     rtUnlockPrefs()
  48.  
  49.     INTERNALS
  50.  
  51.     HISTORY
  52.  
  53. ******************************************************************************/
  54. {
  55.     AROS_LIBFUNC_INIT
  56.  
  57.     return RTFuncs_LockPrefs(ReqToolsBase);
  58.  
  59.     AROS_LIBFUNC_EXIT
  60.     
  61. } /* rtLockPrefs */
  62.