Can a C dll call a C++ dll? I have a pretty good idea around creating a dll and using LoadLibraryA and GetProcAddress to utilize a separate dll's functions; however, I would like to know if there are any additional concerns I should keep in mind when calling a C++ dll from a C dll.
Thanks!
PS, I've researched quite a bit, but unfortunately, most of the stuff I find is related to C# or C++. It seems like the amount of info regarding C is dwindling.