Dan Weiss
Dan Weiss
I heard that it's possible to load DLLs that only depend on NTDLL.dll, and have no dependency on Kernel32.dll. I'm about to test it out right now. edit: Nope, doesn't...
Is this issue suddenly about changing working directory at runtime? I thought this was about changing working directory at startup time. It's a parameter of CreateProcessW.
It's about having the debugged EXE start up with a specific initial directory, and this option being remembered until the debugger is closed, or another EXE is opened in the...
Applications can change the working directory, but they can't change the Command Line parameters. So changing the Current Working Directory and changing the Initial Directory really should be two different...
Can the really simple version of the problem be tackled here? Just a text field somewhere that changes the Initial Directory when the process is created. Nothing fancy, not trying...
I completely missed that part of the documentation, because I was only reading the comments for the DOKAN_OPERATIONS struct. I didn't realize there was other documentation as well. Here is...
I meant that the Application calls `CloseHandle`, then the application waits for `Cleanup` in the Dokan filesystem to finish before `CloseHandle` can return. `Cleanup` is said to be "blocking" `CloseHandle`...
Windows is properly doing its accounting. Dokan's `CloseFile` is called after all three pieces of the file mapping have been released. It's just that here, Dokan's `Cleanup` is happening "early",...
Try NintendulatorNRS (modification by NewRisingSun) to play these games.
I've actually written something before that overrides DirectDraw and redirects its output to a D3D9 Texture DC. But that was for a completely different motive (wanted to run cool pixel...