So I'm trying to make a MessageBox pop up with the memory address of a FARPROC so I can see the value. I can't seem to do it though. I've tried some wacky stuff too.
This is my unworking example that I last tried.
MessageBox(NULL, (LPCSTR) (WCHAR) myFarproc, "Loader", NULL);
It just crashes the program, and
MessageBox(NULL, (LPCSTR) myFarproc, "Loader", NULL);
displays gibberish. Also of note is that the program calling this dll's code is in C#.
std::size_t, and convert thatstd::size_tto a string. Casting an address to a char is never going to work. – ildjarn Mar 7 at 1:54FARPROCis just a regular pointer. – Mark Ransom Mar 7 at 1:54wsprintf()orsprintf()(orswprintf()if you're compiling Unicode) in conjunction with a text buffer and a single added line of code will probably get what you're looking for. Anistringstreamwill likely also get you there. – WhozCraig Mar 7 at 2:14