c++ Programming Glossary: createfilemapping
How do I get at the exception information when using MiniDumpWriteDump out-of-process? http://stackoverflow.com/questions/13590980/how-do-i-get-at-the-exception-information-when-using-minidumpwritedump-out-of-pr is not valid in the context of the watchdog process. Use CreateFileMapping MapViewOfFile in the watched process as part of its initialization..
How to create a virtual file? http://stackoverflow.com/questions/2080892/how-to-create-a-virtual-file the dll would support a path like this. Second I found CreateFileMapping and GetMappedFileName. Can they be used to simulate a file in..
Which has been the most reliable, fastest Windows C++ profiler that you have used? http://stackoverflow.com/questions/2308026/which-has-been-the-most-reliable-fastest-windows-c-profiler-that-you-have-use timings and writes the data into named shared memory via CreateFileMapping so that I can look at the timing data from another process live...
Resolving RVA's for Import and Export tables within a PE file http://stackoverflow.com/questions/2975639/resolving-rvas-for-import-and-export-tables-within-a-pe-file FILE_SHARE_READ NULL OPEN_EXISTING 0 NULL hMapSrcFile CreateFileMapping hSrcFile NULL PAGE_READONLY 0 0 NULL pSrcFile PBYTE MapViewOfFile..
Large JPEG/PNG Image Sequence Looping http://stackoverflow.com/questions/4842854/large-jpeg-png-image-sequence-looping not entirely sure about JEPG. Someone suggest that I use CreateFileMapping MapViewOfFile and CreateDIBSection to commit the number of bytes..
Fastest IPC method on Windows 7 http://stackoverflow.com/questions/7127242/fastest-ipc-method-on-windows-7 a named memory mapped file backed by the paging file with CreateFileMapping MapViewOfFile that should be the most straightforward and fastest..
embed DLL in MFC C++ EXE? http://stackoverflow.com/questions/9808467/embed-dll-in-mfc-c-exe CREATE_ALWAYS FILE_ATTRIBUTE_NORMAL NULL HANDLE hFileMap CreateFileMapping hFile NULL PAGE_READWRITE 0 dwSize NULL LPVOID lpAddress MapViewOfFile..
|