G besoin d'une variable globale constante, et j'arrive pas à faire marcher ça. Voila, la syntaxe que j'utilise:
- Un fichier global.h qui contient:
// Position et dimensions de la fenêtre principale
extern const long lgXPos;
extern const long lgYPos;
- Un fichier clip.c qui contient:
// Position et dimensions de la fenêtre principale
const long lgXPos = 10;
const long lgYPos = 10;
- Et quand, dans other.c, j'utilise une variable globale, il y a un message syle unresolved external error sur ma variable.
Comment je peux faire ?