If you have a good friend ask them to zip up all the dlls and exe's and extract them into your EQ folder and it should work. I just backpatched my new computer by zipping up all and only the dlls and exe's from the non-patched comp and it works fine.
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.
|