zedseven
Reasons why a DLL might decompile to have every function return `null`?
Yeah I've been wondering if the reason for the actual error is caused somehow by the obfuscation - since the entry point is an unmanaged executable, maybe something in the CLR is different and one of the obfuscation techniques fails
53 replies
Reasons why a DLL might decompile to have every function return `null`?
I don't think so - I checked and there is no other DLL packaged with the one I'm working with. VS' disassembly shows function and class names that only exist within the one I'm looking at, too
53 replies
Reasons why a DLL might decompile to have every function return `null`?
The actual issue I'm trying to figure out through decompilation is as follows:
When a function in this DLL is called using a managed Visual C++ executable, it works.
When I call that function from an unmanaged C++ executable, using a C++/CLI bridge, it returns an error (a string error message created by the DLL, not a crash or exception)
53 replies