19 Oct
2010
19 Oct
'10
10:36 p.m.
I'm using Windows 7 (64 bit)
Do you compile for 64 bit? Boost and your application should be built for the same architecture.
But the methods it's looking for are prefixed by "__cdecl". I've tried compiling my code with the /Gd and /Gz options, and neither seemed to work.
/Gz is for stdcall, /Gd is for cdecl. If you do not specify either of them, then __thiscall is used for c++ member functions by default.