Think I might be narrowing down at least the runtime/release build error for GetInfo.
In internal.hpp the function is defined, but it has this config macro
// EDITTIME
#ifndef RUN_ONLY
And the function below is grayed out.
void WINAPI GetInfo(LPOINFO objectInfo)
{
objectInfo->MinimumVersion = MINIMUM_VERSION;
objectInfo->ideFlags = IDE_FLAGS;
}
Still not sure why it compiles fine under debug mode.
What does it mean in Visual Studio when there is a tiny little red circle with a minus sign sitting over the file name in the solution explorer? I'm using Visual Studio Pro 2010 and the project I coverted over was the MFC visual studio 2005 solution.