07.02.2016, 19:52
Actually you got it wrong:
Should/Recommended to be like this:
So if user haven't defined, the include will run on its default value.
pawn Код:
#if !defined FILE_SERVERIP
#error Please #define FILE_SERVERIP "127.0.0.1"
#endif
pawn Код:
#if !defined FILE_SERVERIP
#define FILE_SERVERIP "127.0.0.1"
#endif