hey ulao, Maybe I can help a little too.
for one thing there is no irrODE.dll because irrODE builds as a static .lib file, it has no DLL. you do need a ode_single.dll built with whatever compiler you are using....
The irrlicht.dll and ode_single.dll brainsaw included are bigger than ones built by vs2008 because they were built with gcc in code::blocks, which makes bigger DLL files since it's not as optimized for windows.
as for your compiler errors, yeh you need to download ode 0.11 and set up the project include paths in vs2008 to include it's headers as well to fix your errors.
the vs2008 project for the irredit plugin does not need to link against the irrODE.lib or ODE itself i think because it uses #ifdef _IRREDIT_PLUGIN and _USE_ODE_NULL_DEVICE to prevent doing any actual physics work when it is compiled in that project. Therefore it is just making sort of empty classes that have the same members, but don't actually implement any ODE functionality.
hth!


