< WINDOWS网络编程>>英文版,一本详细讲解WINDOWS平台下网络编程的国外经典书籍,适合英文水平高的牛人

源代码在线查看: server.cpp

软件大小: 2327 K
上传用户: machao844655
关键词: WINDOWS gt 网络编程 英文
下载地址: 免注册下载 普通下载 VIP

相关代码

				// Module Name: server.cpp
				//
				// Purpose:
				//     Demonstrates how to write a mailslot server application
				//
				// Compile:
				//     cl -o server server.cpp
				//
				// Command Line Options:
				//     None
				//
				
				#include 
				#include 
				
				void main(void) {
				
				   HANDLE Mailslot;
				   char buffer[256];
				   DWORD NumberOfBytesRead;
				
				   // Create the mailslot
				   if ((Mailslot = CreateMailslot("\\\\.\\mailslot\\myslot", 0,
				      MAILSLOT_WAIT_FOREVER, NULL)) == INVALID_HANDLE_VALUE)
				   {
				      printf("Failed to create a MailSlot %d\n", GetLastError());
				      return;
				   }
				
				   // Read data from the mailslot forever!
				   while(ReadFile(Mailslot, buffer, 256, &NumberOfBytesRead,
				      NULL) != 0)
				   {
				      printf("%.*s\n", NumberOfBytesRead, buffer);
				   }
				}
							

相关资源