There are posts on the forum describing how to go about making such macros, but I already know that, and I want to do it in another file, which they do not describe how to do.
Therefore, my question is - I'm going to make a program which will use a lot of replacement macros, and I therefore want them to be in another file(s), so that I have file1.cpp and every occurance of "cucumber" is replaced with "banana" using a #define macro in file2.h (I suppose it would have to be a header file?).
THE MACRO I MEAN IS:
#define identifier substitution_text
which will then replace every identifier with substitutuion text.
Cheers, Matt