home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Netzwerk / NETMU17.LHA / accounts / accountslib.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-02  |  990 b   |  57 lines

  1. /*
  2. **    $VER: accountslib.c 1.7 (02.11.94)
  3. **
  4. **    accounts.library standard functions
  5. **
  6. **    © Copyright 1994 by Norbert Püschel
  7. **    All Rights Reserved
  8. */
  9.  
  10. #include <proto/exec.h>
  11. #include "daemon.h"
  12. #include <debug.h>
  13.  
  14. struct DosLibrary *DOSBase;
  15. extern struct Library *AccountsBase;
  16.  
  17. volatile struct Daemon guardian;
  18. extern void guardian_func(void);
  19.  
  20. BOOL __saveds LibInit(void)
  21.  
  22. {
  23.   DOSBase = (struct DosLibrary *)OpenLibrary("dos.library",37);
  24.   if(DOSBase) {
  25.     D(bug("dos.library opened\n"));
  26.     InitDaemon(&guardian);
  27.     return(TRUE);
  28.   }
  29.   else {
  30.     D(bug("dos.library could not be opened\n"));
  31.   }
  32.   return(FALSE);
  33. }
  34.  
  35. BOOL __saveds LibOpen(void)
  36.  
  37. {
  38.   if(!DaemonOK(&guardian))
  39.     return(StartDaemon(&guardian,guardian_func,"Accounts Daemon",0));
  40.   else
  41.     return(TRUE);
  42. }
  43.  
  44. BOOL __saveds LibClose(void)
  45.  
  46. {
  47.   if(AccountsBase->lib_OpenCnt == 0) StopDaemon(&guardian);
  48.   return(TRUE);
  49. }
  50.  
  51. BOOL __saveds LibExpunge(void) 
  52.  
  53. {
  54.   CloseLibrary((struct Library *)DOSBase);
  55.   return(TRUE);
  56. }
  57.