server.cpp
来自「< WINDOWS网络编程>>英文版,一本详细讲解WINDOW」· C++ 代码 · 共 37 行
CPP
37 行
// Module Name: server.cpp
//
// Purpose:
// Demonstrates how to write a mailslot server application
//
// Compile:
// cl -o server server.cpp
//
// Command Line Options:
// None
//
#include <windows.h>
#include <stdio.h>
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);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?