1
vote
3answers
520 views
How can I prevent URLDownloadToFile from retrieving from the cache ?
I am using URLDownloadToFile to retrieve a file from a website. Subsequent calls return the original file rather than an updated version. I assume it is retrieving a cached version.
…
4
votes
5answers
1k views
How do you iterate backwards through an STL list ?
I'm writing some cross-platform code between Windows and Mac.
If list::end() "returns an iterator that addresses the location succeeding the last element in a list" and can be checked when …
1
vote
1answer
78 views
How can I categorize the memory usage of a NON-.NET application/DLL ?
I have a 32-bit Visual Studio 8.0 C++ Windows DLL (non-.NET) that appears to be taking up more memory than I would expect. I want to determine exactly where the memory is going, not just a single …
3
votes
4answers
150 views
Can I use an stl map if I plan to use arbitrary class objects as the key?
I'm new to STL. The thing stumping me about using a map to store arbitrary objects:
std::map<MyClassObj, MyDataObject> MyMap;
is how I find objects. How wou …
3
votes
How can I prevent URLDownloadToFile from retrieving from the cache ?
Call DeleteUrlCacheEntry with the same URL just prior to calling URLDownloadToFile.
You will need to link against Wininet.lib
…
