Changeset 26824 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Feb 26, 2010 10:36:08 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 58097
- Location:
- trunk/src/VBox/Runtime/r3/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/pipe-win.cpp
r26785 r26824 66 66 67 67 68 RTDECL(int) RTPipeReadBlocking(RTPIPE hPipe, void *pvBuf, size_t cbToRead )68 RTDECL(int) RTPipeReadBlocking(RTPIPE hPipe, void *pvBuf, size_t cbToRead, size_t *pcbRead) 69 69 { 70 70 return VERR_NOT_IMPLEMENTED; … … 78 78 79 79 80 RTDECL(int) RTPipeWriteBlocking(RTPIPE hPipe, const void *pvBuf, size_t cbToWrite )80 RTDECL(int) RTPipeWriteBlocking(RTPIPE hPipe, const void *pvBuf, size_t cbToWrite, size_t *pcbWritten) 81 81 { 82 82 return VERR_NOT_IMPLEMENTED; -
trunk/src/VBox/Runtime/r3/win/process-win.cpp
r22497 r26824 157 157 return rc; 158 158 } 159 160 161 RTR3DECL(int) RTProcCreateEx(const char *pszExec, const char * const *papszArgs, RTENV hEnv, uint32_t fFlags, 162 PCRTHANDLE phStdIn, PCRTHANDLE phStdOut, PCRTHANDLE phStdErr, const char *pszAsUser, 163 PRTPROCESS phProcess) 164 { 165 return VERR_NOT_IMPLEMENTED; 166 } 167 159 168 160 169
Note:
See TracChangeset
for help on using the changeset viewer.