Search results

  1. E

    Trouble with GetCurrentDirectory/SetCurrentDirectory

    Okay, this is evil. What happened is that you have included an (unmanaged) windows header file that has a macro defined like this #define SetCurrentDirectory(...) SetCurrentDirectoryA() The same thing happens with calls to MessageBox. The solution is to undef the macros: #undef MessageBox...
Back
Top