home *** CD-ROM | disk | FTP | other *** search
/ Network Support Encyclopedia 96-1 / novell-nsepro-1996-1-cd2.iso / download / netware / nwatt.exe / NWATTACH.C < prev    next >
C/C++ Source or Header  |  1994-09-29  |  2KB  |  51 lines

  1.  
  2. /****************************************************************************
  3. **        DISCLAIMER
  4. **
  5. **    Novell, Inc. makes no representations or warranties with respect to
  6. **    any NetWare software, and specifically disclaims any express or
  7. **    implied warranties of merchantability, title, or fitness for a
  8. **    particular purpose.
  9. **
  10. **    Distribution of any NetWare software is forbidden without the
  11. **    express written consent of Novell, Inc.  Further, Novell reserves
  12. **    the right to discontinue distribution of any NetWare software.
  13. **
  14. **    Novell is not responsible for lost profits or revenue, loss of use
  15. **    of the software, loss of data, costs of re-creating lost data, the
  16. **    cost of any substitute equipment or program, or claims by any party
  17. **    other than you.  Novell strongly recommends a backup be made before
  18. **    any software is installed.   Technical support for this software
  19. **    may be provided at the discretion of Novell.
  20. ****************************************************************************
  21. #include <stdio.h>
  22. #include <string.h>
  23. #include <alloc.h>
  24. #include <nwcalls.h>
  25.  
  26. void main (int argc, char *argv[])
  27. {
  28.     NWCONN_HANDLE     connHandle;
  29.     NWCCODE        ccode;
  30.  
  31.     if (argc != 2)
  32.     {
  33.         printf ("Usage:  ATTACH <server name>");
  34.         return;
  35.     }
  36.  
  37.     ccode = NWCallsInit (NULL,NULL);
  38.     if (ccode) return;
  39.  
  40.     strupr (argv[1]);
  41.  
  42.     ccode = NWAttachToFileServer (argv[1], 0, &connHandle);
  43.  
  44.     if (ccode)
  45.     {
  46.         printf ("NWAttachToFileServer returned error %04X\n", ccode);
  47.         return;
  48.     }
  49.  
  50.     printf ("You are attached to server %s\n", argv[1]);
  51. }