thanks!
wedpi_tools.cpp and wedpi_tools.h seem to be missing too in the january sdk. i had to copy them over from the november sdk.
i have another problem. there seems to be a bug with fetching path skills.
this is the part of wedpi_ExampleSaveLoad where the path skills get written:
Code:
for ( i=0,n=0; i<points; i++)
{
fprintf(saveStc->fp, " ");
for ( s=0; s<skills_pro_point; s++)
{
float skill=0;
oEd->obje_GetObjData(OBJD_SKILL, n++, & skill, sizeof(float));
fprintf(saveStc->fp, "%f ", skill);
}
fprintf(saveStc->fp, "\n");
}
but it always outputs 0 for all skills! in my own project i didn't get it to work either.