11Fermer13
GodzilLe 03/06/2005 à 15:55
commun.h
#ifdef MAIN_C
type nom_de_la_var;
#else
extern type nom_de_la_var;
#endif
[...]


main.c
#define MAIN_C
#include "commun.h"
[...]


module.c
#include "commun.h"
[...]


Voila un bon exemple ^^