Problème avec <graphics.h>

Problème avec <graphics.h> - C++ - Programmation

Marsh Posté le 25-05-2003 à 10:18:24    

Voilà mon programme :
 

Citation :

#include <stdio.h>
#include <graphics.h>
 
void main (void)
{
   int GraphDriver = VGA; // driver graphique
   int GraphMode = VGAHI; // mode graphique
   int Res;
   
   // initialisation
   initgraph(&GraphDriver, &GraphMode, "" );
   Res = graphresult();
   closegraph();
       
   if (!Res)
      printf ("Initialisation reussie !\n" );
   else
      printf ("Erreur d'initialisation : %d\n", Res);
}


 
Et le message d'erreur :
 

Citation :

Turbo C++  Version 1.01 Copyright (c) 1990 Borland International
graph.c:
Turbo Link  Version 3.01 Copyright (c) 1987, 1990 Borland International
Error: Undefined symbol _closegraph in module graph.c
Error: Undefined symbol _graphresult in module graph.c
Error: Undefined symbol _initgraph in module graph.c


 
Une idée ?  :(

Reply

Marsh Posté le 25-05-2003 à 10:18:24   

Reply

Marsh Posté le 25-05-2003 à 11:27:54    

As tu pensé à rajouter dans tes options de compilations le chemin vers le .a ou el.lib contenant les fonctions de graphics.h ?
 
Ca fait longtemps mais y a pas un -lgraphics a faire ou un truc du genre ?

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed