>>> it's 32-bit windows 9x code, but the target is 64-bit, so I have to disable >>> the 9x code. >>> I found a workaround on the internet (great place to look for solutions): >>> #if !defined(_WIN64) >>> ...//win9x code >>> #endif
Yep. >>> Use DWORD_PTR instead. >>> >>> I don't think it's going to fit in 32 bits. It surely won't if it is _WIN64, and if it is only for x86 (32 bits) the ifdef'fery above will do the trick. -- Ozkan ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
