Ticket Change Details
Not logged in
Overview

Artifact ID: 3071145461de467a2a91490382c1b6ee269b58ef
Ticket: 11622724e5b46818396db583ac839391f70c8d64
implementation of function “popen2” on win32
User & Date: anonymous 2010-08-26 09:08:18
Changes

  1. Appended to comment:
    
    
    <hr><i>anonymous added on 2010-08-26 09:08:18:</i><br>
    Notice:
    The child processes must set "stdin" and "stdout" to binary mode when use pipe to pass binary data.
    <pre>
        _setmode(0, _O_BINARY);
        _setmode(1, _O_BINARY);
    </pre>
    
  2. resolution changed to: "Open"