Un error al compilar mi gm ayuda
#3

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 ^^
Reply


Messages In This Thread
Un error al compilar mi gm ayuda - by CarlosRodrigues - 24.07.2011, 16:16
Respuesta: Un error al compilar mi gm ayuda - by GoldenDragon - 24.07.2011, 16:47
Re: Un error al compilar mi gm ayuda - by dis77urbio - 25.07.2011, 00:22
Respuesta: Un error al compilar mi gm ayuda - by TiNcH010 - 25.07.2011, 01:45

Forum Jump:


Users browsing this thread: 1 Guest(s)