[REALESE][.INC] Full Global Vars V0.2 (very early realese)
#5

Good work but you did wrong here:

Код:
#include "confirm" /* it contains "#define CONFIRMED" */

#if !defined CONFIRMED
	#endinput
#endif
This is very bad, why? CONFIRMED will always will be defined, so how to do this correct way?

Код:
#if defined CONFIRMED
  #endinput
#endif
#define CONFIRMED
I hope this helps
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 2 Guest(s)