Changeset 95848 in vbox
- Timestamp:
- Jul 26, 2022 11:33:48 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 152573
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r95845 r95848 2801 2801 RT_NO_STRICT \ 2802 2802 IPRT_NO_ALLOCA_TROUBLE \ 2803 IPRT_GETOPT_WITHOUT_NETWORK_ADDRESSES 2803 IPRT_GETOPT_WITHOUT_NETWORK_ADDRESSES \ 2804 IPRT_MINIMAL_STREAM 2804 2805 RuntimeR3NoCrt_SOURCES := \ 2805 2806 common/string/straprintf.cpp \ -
trunk/src/VBox/Runtime/r3/win/nocrt-streams-win.cpp
r95844 r95848 178 178 } 179 179 180 181 #if 0 180 #ifndef IPRT_MINIMAL_STREAM 181 182 # if 0 182 183 RTR3DECL(int) RTStrmReadEx(PRTSTREAM pStream, void *pvBuf, size_t cbToRead, size_t *pcbRead) 183 184 { … … 185 186 return RTFileRead(pStream->hFile, pvBuf, cbToRead, pcbRead); 186 187 } 187 # endif188 # endif 188 189 189 190 … … 210 211 } 211 212 213 #endif
Note:
See TracChangeset
for help on using the changeset viewer.