home *** CD-ROM | disk | FTP | other *** search
- //
- // mailslot.c
- //
- //
- //
- //
- //
- //
-
- #include "STDIO.h"
-
- #define INCL_NETMAILSLOT
- #define INCL_NETERRORS
- #include <lan.h>
-
-
-
- unsigned main( argc, argv )
- int argc;
- char * argv[];
- {
-
- int i;
- unsigned retcode;
- unsigned slothdl;
- char buffer[80 * 10];
- unsigned short msglen;
- unsigned short nextsize;
- unsigned short nextpriority;
-
-
- // Make sure mailslot name was specified
- //
- if(argc < 2)
- {
- printf( "Usage: MAILSLOT <localmailslotname>\n" );
- return (1);
- }
-
- retcode = DosMakeMailslot(argv[1], 1024, 2048, &slothdl);
- if (retcode)
- {
- printf("Unable to open mailslot. Error: %d", retcode);
- return (1);
- }
-
- printf("Mailslot created.\n");
- printf("To close mailslot send a \"QUIT\" message.\n");
- printf("Listening...\n");
- while (1)
- {
- DosReadMailslot(slothdl, buffer, &msglen, &nextsize, &nextpriority, MAILSLOT_NO_TIMEOUT);
- if (msglen) {
- buffer[msglen] = '\0';
- printf("%s\n", buffer);
- if (!stricmp (buffer, "QUIT"))
- break;
- }
-
- }
-
- return(DosDeleteMailslot(slothdl));
-
- }
-
- #pragma check_stack(off)
-
-