Page 1 of 1

3DSMAX plugins

Posted: Thu Nov 08, 2001 2:19 pm
by Drakon Rider
if anyone still intresting in 3DSMAX4 :

ftp://fauser:365445@files.drakan.ru/pub ... lugins.zip

The problem is that Visual C++ defines INT_PTR to 'long' when it is supposed to be defined as an 'int' (on ia32 platforms). You can either use a supported build environment by updating to the platform SDK, or you can use the unsupported environment by manually fixing the problem in the header "On or around line 123 of include\basetsd.h change:

typedef long INT_PTR, *PINT_PTR; typedef unsigned long UINT_PTR, *PUINT_PTR;
to

typedef int INT_PTR, *PINT_PTR; typedef unsigned int UINT_PTR, *PUINT_PTR;

and most of plugins for 3DSMAX4 would be compiled without error :

error LNK2001: unresolved external symbol "public: virtual char * __thiscall ClassDesc::GetRsrcString(long)" (?GetRsrcString@ClassDesc@@UAEPADJ@Z)

Posted: Sat Jun 18, 2011 2:52 pm
by Drakon Rider
Heh - just 10 years passed and I was asked to build REO plugins for MAX2010.

Here is the current build -
ftp://fauser:365445@files.drakan.ru/pub ... lugins.zip

They are successfully build with MAX2010 SDK and VS2008 but still not tested. Good if anyone will try to test and report if they OK or not.