whikie
Messages postés99Date d'inscriptionvendredi 24 juin 2005StatutMembreDernière intervention17 septembre 2005 29 juil. 2005 à 20:44
merci mais je ne sais pas afficher glGetString(GL_VERSION)
ce n'est pas un char et je ne sais pas transformer un glubyte en char
si tu as un exemple je suis preneur.
//Initialize variable argument list
va_start(ap, text);
vsprintf(temptext, text, ap);
va_end(ap);
//Open the log file for append
if((log = fopen("log.txt", "wb"))==NULL) return;
fprintf(log,"%s\n", temptext);
//Close the file
fclose(log);
}
ca creer un fichier et ecrit dedans
pour ouvrir et pas le creer si il est deja créé tu met if((log = fopen("log.txt", "a"))==NULL) return; au lieu de if((log = fopen("log.txt", "wb"))==NULL) return;