home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a025 / 6.ddi / MAILSLOT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-15  |  1.2 KB  |  68 lines

  1. //
  2. //  mailslot.c
  3. //
  4. //  
  5. //  
  6. //
  7. //
  8. //
  9.  
  10. #include "STDIO.h"
  11.  
  12. #define INCL_NETMAILSLOT
  13. #define INCL_NETERRORS
  14. #include <lan.h>
  15.  
  16.  
  17.  
  18. unsigned main( argc, argv )
  19. int    argc;
  20. char * argv[];
  21. {
  22.  
  23.    int        i;
  24.    unsigned   retcode;
  25.    unsigned   slothdl;
  26.    char buffer[80 * 10];
  27.    unsigned short msglen;
  28.    unsigned short nextsize;
  29.    unsigned short nextpriority;
  30.  
  31.  
  32.    // Make sure mailslot name was specified
  33.    //
  34.    if(argc < 2)
  35.    {
  36.       printf( "Usage: MAILSLOT <localmailslotname>\n" );
  37.       return (1);
  38.    }
  39.  
  40.    retcode = DosMakeMailslot(argv[1], 1024, 2048, &slothdl);
  41.    if (retcode)
  42.    {
  43.       printf("Unable to open mailslot. Error: %d", retcode);
  44.       return (1);
  45.    }
  46.  
  47.    printf("Mailslot created.\n");
  48.    printf("To close mailslot send a \"QUIT\" message.\n");
  49.    printf("Listening...\n");
  50.    while (1) 
  51.    {
  52.       DosReadMailslot(slothdl, buffer, &msglen, &nextsize, &nextpriority, MAILSLOT_NO_TIMEOUT);
  53.       if (msglen) {
  54.          buffer[msglen] = '\0';
  55.          printf("%s\n", buffer);
  56.          if (!stricmp (buffer, "QUIT"))
  57.             break;
  58.       }
  59.  
  60.    }
  61.  
  62.    return(DosDeleteMailslot(slothdl));
  63.  
  64. }
  65.  
  66. #pragma check_stack(off)
  67.  
  68.