In 3ds max 6 when I load the plugins I get error 127: the specified procedure could not be found... I looked over all the imported functions in the plugins and they all match 3ds max 6 dlls except for TBSetCount
...as called in SFCmodImp.dli and sfcmodexp.dle:
Code:
?TBSetCount@@YAXPAPAUTabHdr@@HH@Z
Undecorated C++ Function:
void __cdecl TBSetCount(struct TabHdr * *,int,int)
in the 3ds max 6 maxutil.dll:
Code:
?TBSetCount@@YAXPAPAUTabHdr@@HHH@Z
Undecorated C++ Function:
void __cdecl TBSetCount(struct TabHdr * *,int,int,int)
- notice the third integer required by the version 6 dll... perhaps this is the only change needed? I've tried using a hex editor to change the call but it messes up all the internal references in the dli... Is there any chance that this will be updated? (I'll keep trying to edit the compiled plugins...)
Could somebody send me a copy of the 3ds max 5 maxutil.dll to compare and test?