HANDLE CreateNamedPipe(
  LPCTSTR lpName,                             // pipe name
  DWORD dwOpenMode,                           // pipe open mode
  DWORD dwPipeMode,                           // pipe-specific modes
  DWORD nMaxInstances,                        // maximum number of instances
  DWORD nOutBufferSize,                       // output buffer size
  DWORD nInBufferSize,                        // input buffer size
  DWORD nDefaultTimeOut,                      // time-out interval
  LPSECURITY_ATTRIBUTES lpSecurityAttributes  // SD
);
第二个参数dwOpenMode: 
[in] Specifies the pipe access mode, the overlapped mode, the write-through mode, and the security access mode of the pipe handle.
指定管道访问模式,重叠模式,写直通模式,和管道句柄的安全访问模式第三个参数dwPipeMode 
[in] Specifies the type, read, and wait modes of the pipe handle. 
指定管道句柄的类型,读写类型。其中第二个参数:有个FILE_FLAG_OVERLAPPED,用来设置为重叠模式
第三个参数:有个PIPE_WAIT :Blocking mode is enabled.问题是:
一个是管道的访问方式,一个是管道句柄的访问方式,有区别吗??????