25.07.2011, 00:22
Bueno el error del stock no recuerdo que include es el que ya lo tiene definido pero si estas usando cualqiera de estos tres (dutils, dudb o dini) entonces debes borrar ese stock de tu gm porque ahi te esta diciendo que ya esta definido, borra esto:
//-------------------------------//
strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
index++;
}
new offset = index;
new result[20];
while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}
//----------------------------------------//
Y sobre los otros errores debes postear las lineas ^^
//-------------------------------//
strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
index++;
}
new offset = index;
new result[20];
while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}
//----------------------------------------//
Y sobre los otros errores debes postear las lineas ^^