Splitted graph.c in multiple files. Compiles but there is a lot of warnings about declarations. I'm cleaning it up but i wanted to commit that before starting to get conflicts

git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@395 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Adrien Destugues
2008-12-16 22:02:22 +00:00
parent 78df30d844
commit c004c90d90
16 changed files with 4696 additions and 4557 deletions

View File

@@ -104,3 +104,19 @@ byte Etat_chrono; // Etat du chrono: 0=Attente d'un X
dword Chrono_delay; // Nombre de 18.2ème de secondes demandés
dword Chrono_cmp; // Heure de départ du chrono
byte Nouvelle_preview; // Booléen "Il faut relancer le chrono de preview"
unsigned long Memoire_libre(void);
void Num2str(dword Nombre,char * Chaine,byte Taille);
int Str2num(char * Chaine);
short Round(float Valeur);
short Round_max(short Numerateur,short Diviseur);
short Round_div_max(short Numerateur,short Diviseur);
int Min(int A,int B);
int Max(int A,int B);
char* Libelle_mode(int Mode);
int Conversion_argument_mode(const char *Argument);