joeGrammar
Programmer
Does anyone know why a header file such as
xxx.h
with code such as:
extern const INDICATOR
eIndFalse,
eIndTrue,
eIndNo,
eIndYes;
and included in
yyy.c
and eIndTrue is referenced a few times...
Anyways does anyone know why this would compile fine, but cause an unresolved external at link time? and yes the .h file is included in the project. Also its a dll being built, is it a function of the "extern"?
xxx.h
with code such as:
extern const INDICATOR
eIndFalse,
eIndTrue,
eIndNo,
eIndYes;
and included in
yyy.c
and eIndTrue is referenced a few times...
Anyways does anyone know why this would compile fine, but cause an unresolved external at link time? and yes the .h file is included in the project. Also its a dll being built, is it a function of the "extern"?