29be311f01
+ Redirige la sortie de la sortie d'erreurs vers un fichier ("logs.txt")
31 lines
582 B
C
31 lines
582 B
C
#include "Vue/vue.h"
|
|
|
|
|
|
int main(int argc, char const *argv[])
|
|
{
|
|
(void)argc;
|
|
(void)argv;
|
|
|
|
atexit(&cleaningFunction);
|
|
|
|
if(freopen("logs.txt", "w", stderr) == NULL)
|
|
{
|
|
fprintf(stderr, "Impossible de rediriger \'STDERR\' vers un fichier: %s\n", strerror(errno));
|
|
}
|
|
|
|
/* Début du programme */
|
|
|
|
// Création de la fenêtre
|
|
sfRenderWindow *window = initialisationFenetre();
|
|
|
|
// Écran d'accueil du logiciel
|
|
splashScreen(window);
|
|
|
|
// Menu, l'utilisateur fera des choix, le contrôleur sera appelé à ces moments là
|
|
handleMenu(window);
|
|
|
|
/* Fin du programme */
|
|
|
|
return 0;
|
|
}
|