资源简介

命名管道示例代码 vc6

资源截图

代码片段和文件信息

// namedPipeClient.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “namedPipeClient.h“
#include “namedPipeClientDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CNamedPipeClientApp

BEGIN_MESSAGE_MAP(CNamedPipeClientApp CWinApp)
//{{AFX_MSG_MAP(CNamedPipeClientApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CNamedPipeClientApp construction

CNamedPipeClientApp::CNamedPipeClientApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CNamedPipeClientApp object

CNamedPipeClientApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CNamedPipeClientApp initialization

BOOL CNamedPipeClientApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

CNamedPipeClientDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     110653  2006-09-01 11:21  namedPipeClient\Debug\namedPipeClient.exe

     目录          0  2007-12-13 14:26  namedPipeClient\Debug

     文件      35916  2006-09-01 11:17  namedPipeClient\namedPipeClient.aps

     文件       1367  2006-09-01 11:21  namedPipeClient\namedPipeClient.clw

     文件       2189  2006-08-31 09:47  namedPipeClient\namedPipeClient.cpp

     文件       4321  2006-08-31 09:47  namedPipeClient\namedPipeClient.dsp

     文件        553  2006-08-31 09:47  namedPipeClient\namedPipeClient.dsw

     文件       1423  2006-08-31 09:47  namedPipeClient\namedPipeClient.h

     文件      66560  2006-09-01 11:43  namedPipeClient\namedPipeClient.ncb

     文件      53760  2006-09-01 11:43  namedPipeClient\namedPipeClient.opt

     文件       1159  2006-09-01 11:21  namedPipeClient\namedPipeClient.plg

     文件       5610  2006-09-01 11:17  namedPipeClient\namedPipeClient.rc

     文件       5808  2006-09-01 11:21  namedPipeClient\namedPipeClientDlg.cpp

     文件       1564  2006-09-01 11:18  namedPipeClient\namedPipeClientDlg.h

     文件       3741  2006-08-31 09:47  namedPipeClient\ReadMe.txt

     文件       1078  2006-08-31 09:47  namedPipeClient\res\namedPipeClient.ico

     文件        407  2006-08-31 09:47  namedPipeClient\res\namedPipeClient.rc2

     目录          0  2007-08-07 09:53  namedPipeClient\res

     文件        831  2006-09-01 11:17  namedPipeClient\resource.h

     文件        217  2006-08-31 09:47  namedPipeClient\StdAfx.cpp

     文件       1054  2006-08-31 09:47  namedPipeClient\StdAfx.h

     目录          0  2007-08-07 09:53  namedPipeClient

     文件     106562  2007-12-13 14:24  NamedPipeServer\Debug\NamedPipeServer.exe

     目录          0  2007-12-13 14:26  NamedPipeServer\Debug

     文件      20964  2007-12-13 14:22  NamedPipeServer\NamedPipeServer.aps

     文件       1297  2007-12-13 14:25  NamedPipeServer\NamedPipeServer.clw

     文件       2189  2006-08-31 08:17  NamedPipeServer\NamedPipeServer.cpp

     文件       4325  2006-08-31 08:36  NamedPipeServer\NamedPipeServer.dsp

     文件        553  2006-08-31 08:17  NamedPipeServer\NamedPipeServer.dsw

     文件       1423  2006-08-31 08:17  NamedPipeServer\NamedPipeServer.h

............此处省略17个文件信息

评论

共有 条评论