37 lines
956 B
C
37 lines
956 B
C
#ifndef __PTC_H
|
|
#define __PTC_H
|
|
|
|
///////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////
|
|
|
|
#if defined(_DEBUG) || defined(PRESS_DEMO)
|
|
// To disactivate Protect
|
|
#undef PTC_SYSTEM_ACTIVED
|
|
#else
|
|
// To activate Protect
|
|
#define PTC_SYSTEM_ACTIVED
|
|
#endif
|
|
|
|
/**/
|
|
/* #define PTC_SYSTEM_ACTIVED */
|
|
/**/
|
|
|
|
///////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
#ifdef PTC_SYSTEM_ACTIVED
|
|
#include "ptc/ptc_pub.h" // structures
|
|
#include "ptc/PTCDefn.h" // define
|
|
#include "ptc/PTCFcts.h" // functions
|
|
#else
|
|
#include "ptc/PTCMacro.h" // macros
|
|
#endif
|
|
|
|
#endif |