If I have an app that uses at least two dlls, is it generally safe to allocate resources in one dll and free them in another?
I'm thinking specifically about calling fopen and fclose in different dlls, but I'd also like to know that it's safe for other resources (memory pointers, handles, etc...).
I think as long as everything is compiled with the same switches, it should work.
Thanks, Cory