41 lines
570 B
C
41 lines
570 B
C
#ifndef __P_CONFIG_H__
|
|
#define __P_CONFIG_H__
|
|
|
|
|
|
#define SESSION_MAX 9000000
|
|
|
|
#define START_MONTH 7
|
|
#define END_MONTH 12
|
|
/*
|
|
//////////////////////////////////////////////////////////////////////////
|
|
#if defined (ReleaseDemo)
|
|
#define SESSION_LIMIT
|
|
#define MONTH_LIMIT
|
|
#ifndef AUTHOR
|
|
#define AUTHOR
|
|
#endif
|
|
#define DEMO_ONLY
|
|
|
|
#endif
|
|
|
|
|
|
#if defined (ReleaseFree)
|
|
#define MONTH_LIMIT
|
|
#define AUTHOR
|
|
#endif
|
|
|
|
|
|
#if defined (ReleaseRedist)
|
|
#define REDIST
|
|
#undef DEMO_ONLY
|
|
#endif
|
|
|
|
|
|
#if defined (ReleaseDongle)
|
|
#define DONGLE_VERSION
|
|
#undef DEMO_ONLY
|
|
#endif
|
|
|
|
*/
|
|
|
|
#endif |