User MSN - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T15:10:48Z http://stackoverflow.com/feeds/user/6210 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1931126/is-it-good-practice-to-null-a-pointer-after-deleting-it/1931271#1931271 1 Answer by MSN for Is it good practice to NULL a pointer after deleting it? MSN 2009-12-18T23:26:47Z 2009-12-18T23:26:47Z <p>If you have no other constraint that forces you to either set or not set the pointer to NULL after you delete it (one such constraint was mentioned by <a href="http://stackoverflow.com/questions/1931126/is-it-good-practice-to-null-a-pointer-after-deleting-it/1931149#1931149">Neil Butterworth</a>), then my personal preference is to leave it be.</p> <p>For me, the question isn't "is this a good idea?" but "what behavior would I prevent or allow to succeed by doing this?" For example, if this allows other code to see that the pointer is no longer available, why is other code even attempting to look at freed pointers after they are freed? Usually, it's a bug.</p> <p>It also does more work than necessary as well as hindering post-mortem debugging. The less you touch memory after you don't need it, the easier it is to figure out why something crashed. Many times I have relied on the fact that memory is in a similar state to when a particular bug occurred to diagnose and fix said bug.</p> http://stackoverflow.com/questions/1911561/resize-a-file-down/1911593#1911593 3 Answer by MSN for Resize a file (down) MSN 2009-12-16T00:58:26Z 2009-12-16T00:58:26Z <p>"net helpmsg 1224" -> The requested operation cannot be performed on a file with a user-mapped section open.</p> <p>And from MSDN for <a href="http://msdn.microsoft.com/en-us/library/aa365531%28VS.85%29.aspx" rel="nofollow"><code>SetEndOfFile</code></a>: </p> <blockquote> <p>If CreateFileMapping is called to create a file mapping object for hFile, UnmapViewOfFile must be called first to unmap all views and call CloseHandle to close the file mapping object before you can call SetEndOfFile.</p> </blockquote> http://stackoverflow.com/questions/1907921/can-using-0l-to-initialize-a-pointer-in-c-cause-problems/1911057#1911057 0 Answer by MSN for Can using 0L to initialize a pointer in C++ cause problems? MSN 2009-12-15T22:57:39Z 2009-12-15T22:57:39Z <p>You can use <code>false</code>, <code>0</code>, <code>0l</code>, <code>0L</code>, <code>0ul</code>, <code>0u</code>, <code>00</code>, or any number of ways to represent the literal zero. The literal zero is basically a magical symbol that happens to also correspond to a null pointer constant.</p> <p>If we were talking about a value that happens to be bitwise zero and the code were memcpy-ing it over the pointer, then we would have the problems mentioned above.</p> <p>Bonus question: What types have a null pointer constant that isn't bitwise zero?</p> http://stackoverflow.com/questions/1910715/how-do-i-find-out-if-there-is-data-available-to-be-read-from-a-socket-in-boosta/1911023#1911023 0 Answer by MSN for How do I find out if there is data available to be read from a socket in boost::asio? MSN 2009-12-15T22:51:29Z 2009-12-15T22:51:29Z <p>From glancing at the <a href="http://www.boost.org/doc/libs/1%5F41%5F0/doc/html/boost%5Fasio/reference/socket%5Fbase/bytes%5Freadable.html" rel="nofollow">documentation</a>, I'll go with <code>socket_base::bytes_readable</code>, as in:</p> <pre><code>boost::asio::ip::tcp::socket socket(io_service); ... boost::asio::socket_base::bytes_readable command(true); socket.io_control(command); std::size_t bytes_readable = command.get(); </code></pre> http://stackoverflow.com/questions/1882070/find-out-if-a-function-is-called-within-a-c-project/1884830#1884830 2 Answer by MSN for Find out if a function is called within a C++ project? MSN 2009-12-10T23:24:48Z 2009-12-10T23:24:48Z <p>Use <code>__declspec(deprecated)</code> in front of the function declaration you want to get rid of. That will throw up compile warnings if that function is actually used at compile time.</p> http://stackoverflow.com/questions/1883894/dynamically-loading-registry-function-on-windows-7/1884823#1884823 2 Answer by MSN for Dynamically loading registry function on Windows 7? MSN 2009-12-10T23:23:34Z 2009-12-10T23:23:34Z <p>You might want to specify the correct version when you call <code>GetProcAddress</code>, i.e., A for ANSI and W for UNICODE.</p> http://stackoverflow.com/questions/1860955/why-does-unspecifiedbool-for-classes-which-have-intrinsic-conversions-to-their/1861857#1861857 0 Answer by MSN for Why does 'unspecified_bool' for classes which have intrinsic conversions to their wrappered type fail? MSN 2009-12-07T18:14:53Z 2009-12-07T18:14:53Z <p>The ambiguity comes from having two possible conversion operators; either: </p> <pre><code>operator handle_t () const; operator unspecified_bool_type() const; </code></pre> <p>or:</p> <pre><code>operator handle_t () const; operator bool () const; </code></pre> <p>Both can be used in a boolean expression, so you have ambiguity.</p> http://stackoverflow.com/questions/1847053/how-to-get-address-of-base-stack-pointer/1850101#1850101 0 Answer by MSN for How to get address of base stack pointer MSN 2009-12-04T22:34:29Z 2009-12-05T18:50:49Z <p>You can use the <code>_AddressOfReturnAddress()</code> intrinsic to determine a location in the current frame pointer, assuming it hasn't been completely optimized away. I'm assuming that the compiler will prevent that function from optimizing away the frame pointer if you explicitly refer to it. Or, if you only use a single thread, you can use the <code>IMAGE_NT_HEADER.OptionalHeader.SizeOfStackReserve</code> and <code>IMAGE_NT_HEADER.OptionalHeader.SizeOfStackCommit</code> to determine the main thread's stack size. See <a href="http://blogs.msdn.com/oldnewthing/archive/2006/09/27/773741.aspx" rel="nofollow">this</a> for how to access the <code>IMAGE_NT_HEADER</code> for the current image.</p> <p>I would also recommend against using <code>IsBadWritePtr</code> to determine the end of the stack. At the very least you will probably cause the stack to grow until you hit the reserve, as you'll trip a guard page. If you really want to find the current size of the stack, use <code>VirtualQuery</code> with the address you are checking.</p> <p>And if the original use is to walk the stack, you can use <code>StackWalk64</code> for that. </p> http://stackoverflow.com/questions/1848881/lseek-function-problem-in-a-copy-file-program/1850063#1850063 0 Answer by MSN for lseek function problem in a copy file program! MSN 2009-12-04T22:25:07Z 2009-12-04T22:25:07Z <p>You are missing the equivalent of <code>strrev(...)</code> in there to reverse the string you write out as well starting from the end of the source file and reading backwards or writing from the end of the target file back to the beginning.</p> <p>The actual implementation is left as an exercise to the reader.</p> http://stackoverflow.com/questions/1777184/simulating-a-keypress-and-keyrelease-in-another-application/1777289#1777289 0 Answer by MSN for Simulating a keypress AND keyrelease in another application? MSN 2009-11-22T00:23:25Z 2009-11-22T00:23:25Z <p>The official API is <a href="http://msdn.microsoft.com/en-us/library/ms646310%28VS.85%29.aspx" rel="nofollow"><code>SendInput</code></a>. </p> http://stackoverflow.com/questions/1763322/is-there-any-way-that-enter-leavecriticalsection-could-leave-a-handle-behind/1764960#1764960 3 Answer by MSN for Is there any way that Enter/LeaveCriticalSection could leave a handle behind MSN 2009-11-19T17:11:36Z 2009-11-19T17:11:36Z <p>If you don't explicitly delete the critical section and if there was ever contention on the critical section, you will leak a handle. Some implementations of critical sections on Windows allocate a semaphore when two or more threads overlap in their attempts to enter a single critical section.</p> <p>It's not a leak. Or rather, it isn't a leak if the number of "leaked" handles is less than or equal to the number of global critical sections you are using.</p> http://stackoverflow.com/questions/1764680/can-i-extract-c-template-arguments-out-of-a-template-class/1764888#1764888 2 Answer by MSN for Can I extract C++ template arguments out of a template class? MSN 2009-11-19T17:03:24Z 2009-11-19T17:03:24Z <pre><code>template &lt;class T&gt; void extract_type(Holder&lt;T&gt;) { printf("%s\n", typeid(T).name()); } </code></pre> <p>I'm assuming though that you want to use that in a non-templated function. That's a bit more difficult:</p> <pre><code>template &lt;class T&gt; class GetValue; template &lt;class T&gt; class GetValue&lt;Holder&lt;T&gt; &gt; { public: typedef T value_type; }; </code></pre> <p>The magic google words are "partial template specialization"</p> http://stackoverflow.com/questions/1757093/obtain-the-true-name-of-the-currently-select-file-in-the-common-file-dialog/1759679#1759679 1 Answer by MSN for Obtain the true name of the currently select file in the common file dialog? MSN 2009-11-18T22:41:16Z 2009-11-18T22:41:16Z <p>Ah, I found it. You'll want to use <a href="http://weblogs.asp.net/kennykerr/archive/2006/11/10/Windows-Vista-for-Developers-%5F1320%5F-Part-6-%5F1320%5F-The-New-File-Dialogs.aspx" rel="nofollow"><code>IFileOpenDialog</code></a> for Vista, which should explicilty support all those operations you mentioned.</p> http://stackoverflow.com/questions/1757942/interlocked-and-memory-barriers/1759552#1759552 0 Answer by MSN for Interlocked and Memory Barriers MSN 2009-11-18T22:18:28Z 2009-11-18T22:18:28Z <p>If you don't tell the compiler or runtime that <code>m_value</code> should not be read ahead of Bar(), it can and may cache the value of <code>m_value</code> ahead of <code>Bar()</code> and simply use the cached value. If you want to ensure that it sees the "latest" version of <code>m_value</code>, either shove in a <code>Thread.MemoryBarrier()</code> or use <code>Thread.VolatileRead(ref m_value)</code>. The latter is less expensive than a full memory barrier.</p> <p>Ideally you could shove in a ReadBarrier, but the CLR doesn't seem to support that directly.</p> <p>EDIT: Another way to think about it is that there are really two kinds of memory barriers: compiler memory barriers that tell the compiler how to sequence reads and writes and CPU memory barriers that tell the CPU how to sequence reads and writes. The <code>Interlocked</code> functions use CPU memory barriers. Even if the compiler treated them as compiler memory barriers, it still wouldn't matter, as in this specific case, <code>Bar()</code> could have been separately compiled and not known of the other uses of <code>m_value</code> that would require a compiler memory barrier.</p> http://stackoverflow.com/questions/1750343/fastest-way-to-search-1gb-a-string-of-data-for-the-first-occurence-of-a-pattern/1750381#1750381 0 Answer by MSN for Fastest way to search 1GB+ a string of data for the first occurence of a pattern in Python. MSN 2009-11-17T17:18:54Z 2009-11-17T17:18:54Z <p>With infinite memory, you can hash every 1k string along with its position in the 1 GB file.</p> <p>With less than infinite memory, you will be bounded by how many memory pages you touch when searching.</p> http://stackoverflow.com/questions/1735403/how-does-memory-fences-affect-freshness-of-data/1739402#1739402 0 Answer by MSN for How does memory fences affect "freshness" of data? MSN 2009-11-16T00:09:04Z 2009-11-16T00:09:04Z <p>The "freshness" guarantee simply means that Barriers 2 and 3 force the values of <code>_complete</code> to be visible as soon as possible as opposed to whenever they happen to be written to memory.</p> <p>It's actually unnecessary from a consistency point of view, since Barriers 1 and 4 ensure that <code>answer</code> will be read after reading <code>complete</code>.</p> http://stackoverflow.com/questions/1738180/copying-from-double-pointer-to-int-array-is-this-correct/1738198#1738198 1 Answer by MSN for Copying from double pointer to int array. Is this correct? MSN 2009-11-15T17:34:08Z 2009-11-15T17:34:08Z <p>The samples probably need to be scaled from [-1,1] to [min, max], where min and max are minimum and maximum integer values for integer samples.</p> http://stackoverflow.com/questions/1730761/memory-barriers-and-large-structs/1732820#1732820 1 Answer by MSN for Memory barriers and large structs? MSN 2009-11-14T00:49:52Z 2009-11-14T00:49:52Z <p>Clearly the answer is <strong>no</strong>, or rather, you have no guarantees about anything. Nothing prevents the operating system from swapping out the thread that is writing to the 100 byte struct before starting the thread that prints out the 100 byte struct.</p> <p>A memory barrier is used when you want to coordinate access to data through a flag or some other atomic value. I don't know what exactly you are trying to do, so I can't give you good example code about how you should do it.</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/76606#76606 19 Answer by MSN for Hidden Features of C++? MSN 2008-09-16T20:27:20Z 2009-10-15T15:47:23Z <p>Lifetime of temporaries bound to const references is one that few people know about. Or at least it's my favorite piece of C++ knowledge that most people don't know about.</p> <pre><code>const MyClass&amp; x = MyClass(); // temporary exists as long as x is in scope </code></pre> <p>MSN</p> http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/425338#425338 4 Answer by MSN for What's your favorite "programmer ignorance" pet peeve? MSN 2009-01-08T18:35:04Z 2009-09-24T00:46:58Z <p>The power of Google. Or Find in Files.</p> http://stackoverflow.com/questions/1450896/defragmenting-c-heap-allocator-stl/1452348#1452348 0 Answer by MSN for Defragmenting C++ Heap Allocator & STL MSN 2009-09-20T23:46:57Z 2009-09-20T23:46:57Z <p>If this is for console game programming it's a lot easier to forbid un-scoped dynamic memory allocations at runtime. And at startup time, but that's a bit difficult to achieve.</p> http://stackoverflow.com/questions/1430061/how-to-compare-two-bstrs-or-ccombstrs/1430084#1430084 2 Answer by MSN for How to compare two BSTRs or CComBSTRs? MSN 2009-09-15T23:02:49Z 2009-09-15T23:02:49Z <p>You should probably use <a href="http://msdn.microsoft.com/en-us/library/ms221038.aspx" rel="nofollow"><code>VarBstrCmp</code></a>.</p> <p>EDIT: this is actually what <code>CComBSTR::operator==</code> does, so without further context, your code may be incorrect.</p> http://stackoverflow.com/questions/1427197/xaudio2-and-variable-bitrate-audio/1429070#1429070 1 Answer by MSN for XAudio2 and variable bitrate audio MSN 2009-09-15T19:06:43Z 2009-09-15T19:06:43Z <p>Unless I'm high, no audio format specifies variable <strong>output</strong> bitrate or variable number of <strong>output</strong> channels. A variable bitrate codec means that the number of bits used to encode a fixed number of samples varies. Vorbis allows for dynamically encoding the channels as well for channels that can be reproduced with simpler functions such as silence. The number of output channels remains constant, as well as the output bitrate.</p> <p>Also, XAudio2 does not natively support ogg/vorbis files; it supports PCM, ADPCM, and xWMA on Windows and PCM, XMA, and xWMA on Xbox 360.</p> <p>In general, for non-native formats, you have to decompress the audio yourself into the appropriate <strong>output</strong> bitrate and channel format and send that to an <code>IXAudio2SourceVoice</code> via <code>IXAudio2SourceVoice::SubmitSourceBuffer</code>.</p> http://stackoverflow.com/questions/1414215/initial-value-of-int-array-in-c/1414233#1414233 4 Answer by MSN for initial value of int array in C MSN 2009-09-12T03:58:35Z 2009-09-12T03:58:35Z <p>According to the C standard, 6.7.8 (note 10):</p> <blockquote> <p>If an object that has automatic storage duration is not initialized explicitly, its value is indeterminate.</p> </blockquote> <p>So it depends on the compiler. With MSVC, debug builds will initialize automatic variables with 0xcc, whereas non-debug builds will not initialize those variables at all.</p> http://stackoverflow.com/questions/1376035/c-segmentation-fault-problem/1376387#1376387 1 Answer by MSN for C++ segmentation-fault problem MSN 2009-09-03T22:54:48Z 2009-09-03T22:54:48Z <blockquote> <p><code>fragments[i][j] == dictionary[k][j]</code></p> </blockquote> <p>You should make sure <code>dictionary[k].size()&gt;j</code> before you attempt to dereference <code>dictionary[k][j]</code>.</p> http://stackoverflow.com/questions/1375210/how-to-track-keyboard-input-and-bypass-sendinput/1376141#1376141 2 Answer by MSN for How to track keyboard input and bypass SendInput MSN 2009-09-03T21:45:45Z 2009-09-03T21:45:45Z <p>Set a hook with <code>SetWindowsHookEx</code> with the type <a href="http://msdn.microsoft.com/en-us/library/ms644985%28VS.85%29.aspx" rel="nofollow"><code>WH_KEYBOARD_LL</code></a>. Your callback can inspect the <code>KBDLLHOOKSTRUCT::flags</code> field. If it has the <code>LLKHF_INJECTED</code> flag set, then it's from <code>SentInput</code> or <code>keybd_event</code>. Otherwise, it's from the local keyboard driver.</p> http://stackoverflow.com/questions/1371996/incomprehensible-time-consumed-in-using-memory-mapped-file/1374504#1374504 1 Answer by MSN for incomprehensible time consumed in using memory mapped file MSN 2009-09-03T16:28:19Z 2009-09-03T16:28:19Z <p>How fragmented is the file you are comparing with? You can use <a href="http://msdn.microsoft.com/en-us/library/aa364572%28VS.85%29.aspx" rel="nofollow"><code>FSCTL_GET_RETRIEVAL_POINTERS</code></a> to get the ranges that the file maps to on disk. I suspect the last 25 MB will have a lot of small ranges to account for the performance you have measured.</p> http://stackoverflow.com/questions/1374372/how-to-quickly-find-maximal-element-of-a-sum-of-vectors/1374423#1374423 0 Answer by MSN for How to quickly find maximal element of a sum of vectors? MSN 2009-09-03T16:14:51Z 2009-09-03T16:14:51Z <p>You can't really get that much faster than that without additional information about the data (values) stored in <code>a</code>, <code>b</code>, <code>c</code>, <code>d</code>, and <code>e</code>. You have to inspect every sum to determine which one is the greatest.</p> <p>It get's a little worse for Nth element queries, but fortunately, you didn't ask that one.</p> http://stackoverflow.com/questions/1370349/extract-min-implemetation-for-heap-in-c/1370650#1370650 3 Answer by MSN for Extract min implemetation for heap in c++ MSN 2009-09-02T23:13:40Z 2009-09-02T23:13:40Z <p>Pass in <code>std::greater&lt;*&gt;</code> to the <code>std::*_heap</code> functions.</p> http://stackoverflow.com/questions/1305502/designing-efficient-c-code-for-fibers/1368792#1368792 2 Answer by MSN for Designing efficient C++ code for fibers MSN 2009-09-02T16:31:43Z 2009-09-02T16:31:43Z <p>Don't? It's like a thread only with very little CRT support (unlike threads) and some hidden memory requirements like stack and registers.</p> <p>It may make non-system code easier to write but it complicates to an unjustifiable degree.</p> http://stackoverflow.com/questions/1883894/dynamically-loading-registry-function-on-windows-7/1884823#1884823 Comment by MSN on Dynamically loading registry function on Windows 7? MSN 2009-12-14T18:01:56Z 2009-12-14T18:01:56Z I have no idea. Googling the error with GetProcAddress came up with nothing. Although it's also possible that the call to LoadLibrary failed instead of GetProcAddress. http://stackoverflow.com/questions/1883894/dynamically-loading-registry-function-on-windows-7/1884823#1884823 Comment by MSN on Dynamically loading registry function on Windows 7? MSN 2009-12-11T23:45:18Z 2009-12-11T23:45:18Z At this point I don't know why that's happening. I run Vista on x64 and I can't repro it with a 32-bit console app. (Which doesn't match your environment anyways.) http://stackoverflow.com/questions/1886096/complex-pathing-route Comment by MSN on Complex pathing route MSN 2009-12-11T06:06:56Z 2009-12-11T06:06:56Z By undefined do you mean dynamic? http://stackoverflow.com/questions/1860955/why-does-unspecifiedbool-for-classes-which-have-intrinsic-conversions-to-their/1861857#1861857 Comment by MSN on Why does 'unspecified_bool' for classes which have intrinsic conversions to their wrappered type fail? MSN 2009-12-07T22:20:24Z 2009-12-07T22:20:24Z Right. In the second case, it's not ambiguous. I think the first one is still ambiguous, however. http://stackoverflow.com/questions/1847053/how-to-get-address-of-base-stack-pointer/1850101#1850101 Comment by MSN on How to get address of base stack pointer MSN 2009-12-05T06:35:42Z 2009-12-05T06:35:42Z If that's the case there's an API for that: StackWalk64. http://stackoverflow.com/questions/1003394/what-line-of-code-could-i-use-in-c-to-disable-energy-saver/1003426#1003426 Comment by MSN on What line of code could I use in C++ to disable energy saver? MSN 2009-11-30T18:17:26Z 2009-11-30T18:17:26Z As opposed to not working? That's what MSDN recommends. http://stackoverflow.com/questions/1777184/simulating-a-keypress-and-keyrelease-in-another-application/1777289#1777289 Comment by MSN on Simulating a keypress AND keyrelease in another application? MSN 2009-11-22T19:36:42Z 2009-11-22T19:36:42Z Googling C# &quot;SendInput&quot; got me this: <a href="http://blogs.msdn.com/robgruen/archive/2004/05/10/129221.aspx" rel="nofollow">blogs.msdn.com/robgruen/archive/&hellip;</a> http://stackoverflow.com/questions/1757942/interlocked-and-memory-barriers/1759552#1759552 Comment by MSN on Interlocked and Memory Barriers MSN 2009-11-19T21:51:08Z 2009-11-19T21:51:08Z But again, there's a difference between a processor barrier and a compiler barrier. In this particular case, you at least want a compiler barrier. http://stackoverflow.com/questions/1757093/obtain-the-true-name-of-the-currently-select-file-in-the-common-file-dialog Comment by MSN on Obtain the true name of the currently select file in the common file dialog? MSN 2009-11-18T17:14:14Z 2009-11-18T17:14:14Z What's wrong with CDM_GETFILEPATH? http://stackoverflow.com/questions/1166316/what-is-the-performance-of-boostinterprocessmutex-vs-win32-native-mutexes/1166596#1166596 Comment by MSN on What is the performance of boost::interprocess_mutex vs Win32 native mutexes? MSN 2009-10-14T17:53:51Z 2009-10-14T17:53:51Z No kidding. That's why you might as well use a win32 mutex instead of rolling your own. Any &quot;high-performance&quot; cross process communication will not likely be high performance anyway. http://stackoverflow.com/questions/1429266/customizing-win32s-save-file-dialog Comment by MSN on Customizing Win32's Save File Dialog MSN 2009-09-15T22:41:23Z 2009-09-15T22:41:23Z Why aren't you just using a custom dialog template also? http://stackoverflow.com/questions/1371996/incomprehensible-time-consumed-in-using-memory-mapped-file Comment by MSN on incomprehensible time consumed in using memory mapped file MSN 2009-09-05T06:03:12Z 2009-09-05T06:03:12Z What happens if you compare the remainder last? http://stackoverflow.com/questions/1343346/calculate-a-vector-from-the-center-of-a-square-to-edge-based-on-radius/1343531#1343531 Comment by MSN on Calculate a vector from the center of a square to edge based on radius MSN 2009-08-28T22:09:29Z 2009-08-28T22:09:29Z @Pavel, if you are objecting to my use of sin and cos as individual function calls, you can either get around that with invoking a fsincos instruction directly (at least on x86) or recasting each in terms of tan or cot. I used them for the sake of clarity. I wouldn't actually do this in real life, since it's much easier just to calculate the intersection with an edge of a general polygon with a unit vector times some scale that you are determining from the center (or from any location for that matter). http://stackoverflow.com/questions/1343346/calculate-a-vector-from-the-center-of-a-square-to-edge-based-on-radius/1343531#1343531 Comment by MSN on Calculate a vector from the center of a square to edge based on radius MSN 2009-08-28T20:35:53Z 2009-08-28T20:35:53Z @Pavel, in your solution, x and y were the center of the rectangle. So I used that convention in my little function at the end. Anyways, it's not really that important, since you can always offset the calculations and still end up with the right result. http://stackoverflow.com/questions/1238905/what-does-cancelio-do-with-bytes-that-have-already-been-read/1297957#1297957 Comment by MSN on What does CancelIo() do with bytes that have already been read? MSN 2009-08-28T17:42:32Z 2009-08-28T17:42:32Z If you are doing overlapped I/O you have to explicitly pass in the offset to read from in the OVERLAPPED structure, so you can just re-run the I/O from the same offset passing in the same buffer.