let's assume I do simple function designed to be exported as DLL
#include <iostream>
__declspec(dllexport) std::string __cdecl Hello(){
return std::string("Hello world");
}
This dll is intended to be used with a program already using iostream so is it possible to do the same thing but don't include iostream ? (Maybe it's a stupid question)
If yes, how can I specify it to my compiler? (Mingw)