Replies: 1 comment
-
|
I think this is a bug or maybe a non documented limitation. I'll file an issue instead |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
here's the situation:
Program.exe has 2 dependencies: MyDetoured.dll and MyDelayLoaded.dll.
MyDetoured.dll is injected as first entry in the import libs of program.exe using setdll.
When program.exe runs I can see MyDetoured.dll being loaded before MyDelayLoaded.dll (no problem yet).
If I move MyDelayLoaded.dll then myprogram.exe fails to run (still no problem) but this happens before my MyDetoured.dll is loaded (problem - the DllMain of MyDetoured.dll is not even hit)
I see these orders using "gflags -i Program.exe +sls".
Is this known ?
Beta Was this translation helpful? Give feedback.
All reactions