home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Netzwerk / NETMU17.LHA / accounts / LoadAccounts.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-11  |  1.1 KB  |  47 lines

  1. /*
  2. **    $VER: LoadAccounts.c 1.1 (11.10.94)
  3. **
  4. **    program to load accounts.library and start daemon as root
  5. **
  6. **    © Copyright 1994 by Norbert Püschel
  7. **    All Rights Reserved
  8. */
  9.  
  10. #include <proto/exec.h>
  11. #include <proto/multiuser.h>
  12. #include <dos/dos.h>
  13.  
  14. static const UBYTE version[] = "$VER: LoadAccounts 1.1 (11.10.94)";
  15.  
  16. int __saveds main(void)
  17.  
  18. {
  19.   struct ExecBase *SysBase;
  20.   struct Library *AccountsBase;
  21.   struct muBase *muBase;
  22.   struct Task *AccountsDaemon;
  23.   int retval = 20;
  24.  
  25.   SysBase = *(struct ExecBase **)4;
  26.  
  27.   muBase = (struct muBase *)OpenLibrary("multiuser.library",39);
  28.   if(muBase) {
  29.     AccountsBase = OpenLibrary("accounts.library",0);
  30.     if(AccountsBase) {
  31.       AccountsDaemon = FindTask("Accounts Daemon");
  32.       if(AccountsDaemon) {
  33.         if(muLogin(muT_Task,AccountsDaemon,
  34.                    muT_UserID,"root",
  35.                    muT_Password,"",
  36.                    TAG_DONE)) {
  37.           retval = 0;
  38.           Wait(SIGBREAKF_CTRL_C);
  39.         }
  40.       }
  41.       CloseLibrary(AccountsBase);
  42.     }
  43.     CloseLibrary((struct Library *)muBase);
  44.   }
  45.   return(retval);
  46. }
  47.