Jan 04
Let’s say you have the following function:
-
void AppendChar(std::string& s, char ch)
-
{
-
s += ch;
-
}
What happens if this function is exported as an ordinal function from a DLL (not an inlined piece of code inside a header) and you call it from an EXE?
Read the rest of this entry »
Recent Comments