首页 > 系统服务 > 详细

VC-进程间通信(InterProcess Communication,IPC)

时间:2020-01-03 00:12:13      阅读:117      评论:0      收藏:0      [点我收藏+]

邮槽

创建邮槽的进程是邮槽服务器,得到邮槽句柄,只有通过邮槽句柄才可以读数据。ReadFile(...)

邮槽创建时,邮槽名称必须是如下形式:\\.\mailslot\[path]name

例子:

技术分享图片
// MailslotServer.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <Windows.h>
#include <atlstr.h>
#include <iostream>
#define BUF_SIZE 512
int _tmain(int argc, _TCHAR* argv[])
{
    const TCHAR* name = _T("\\\\.\\mailslot\\slotTest");
    HANDLE hSlot = CreateMailslot(name, 0, MAILSLOT_WAIT_FOREVER, NULL);
    if (INVALID_HANDLE_VALUE == hSlot)
    {
        printf("创建邮槽失败。错误代码:%d\n", GetLastError());
        return -1;
    }
    TCHAR buffer[BUF_SIZE] = { 0 };
    DWORD nReadBytes;
    if (ReadFile(hSlot, buffer, BUF_SIZE-1, &nReadBytes, NULL))
    {
        std::wcout.imbue(std::locale("chs"));
        std::wcout << (wchar_t*)buffer << std::endl;
    }
    return 0;
}

//////////////////////////////////////////////////
// MailslotClient.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <Windows.h>

int _tmain(int argc, _TCHAR* argv[])
{
    const TCHAR* name = _T("\\\\.\\mailslot\\slotTest");
    HANDLE hSlot = CreateFile(name, GENERIC_WRITE, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
    if (INVALID_HANDLE_VALUE == hSlot)
    {
        printf("创建客户端邮槽失败。错误代码=%d\n", GetLastError());
        return -1;
    }
    TCHAR content[] = _T("我是客户端邮槽,向服务器发送测试数据。");
    DWORD nBytesWritten;
    if (!WriteFile(hSlot, content, sizeof(content), &nBytesWritten, NULL))
    {
        printf("向邮槽写入数据失败,错误代码:%d\n", GetLastError());
        return -1;
    }
    printf("向邮槽写入了%d个字节的数据。\n", nBytesWritten);
    CloseHandle(hSlot);
    return 0;
}
View Code

VC-进程间通信(InterProcess Communication,IPC)

原文:https://www.cnblogs.com/htj10/p/12142446.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!