It sounds like you want to "declare a variable", not "define" anything. Using
#define is typically for constants and shortcuts to save typing. What you're probably looking for is something like this:
Code:
int auto_timer;
char last_contact;
If you give more information about how you want to use the variable, we can provide more detailed directions on how and where to declare it.