What I want is something functionally like this:
#if TODAY<OCTOBER_31_2017
#define OK 0
#elif TODAY==OCTOBER_31_2017
#define OK 1
#else
#define OK 2
#endif
So I want "OK" to have the relevant compile-time value, depending on today's date.
Is there any way to do it?