#ifndef TL_MAIN_H
#define TL_MAIN_H

#include <sys/resource.h>

/********* !!!! WARNING !!!! ***************
 * Please make sure such header is not included
 * in more than one source-file of TA
 *******************************************/

#define TA_PROP_UUID                    YOUR_TA_UUID
// ifndef will be removed after teegris fix: swarm review #15922883
#ifndef TA_PROP_SINGLE_INSTANCE
#define TA_PROP_SINGLE_INSTANCE         TRUE
#endif
#ifndef TA_PROP_MULTISESSION
#define TA_PROP_MULTISESSION            FALSE
#endif
#define TA_PROP_INSTANCE_KEEPALIVE      FALSE
#define TA_PROP_DATASIZE                RLIM_INFINITY
#define TA_PROP_STACKSIZE               0x10000
#define TA_PROP_THREAD_COUNT            1
#define TA_PROP_NUMINSTANCES            0
#define TA_PROP_INITIAL_PRIORITY        RLIM_DEF_PRIORITY
#define TA_PROP_MAX_PRIORITY            RLIM_MAX_PRIORITY
#define TA_PROP_GROUP_ID                YOUR_GROUP_ID
#define TA_PROP_VERSION                 "ver. none      "
#define TA_PROP_DESCRIPTION             "descr. none    "
#define TA_PROP_DBG_DLM_DATA_AVAILABLE  TA_DBG_DLM_BLOCKED
#define TA_PROP_DBG_PMR_DATA_AVAILABLE  TA_DBG_PMR_BLOCKED

/* !!!! WARNING !!!! Do not write your code in this file !!!! */
#include <ta_property.h>

#endif /* !TL_MAIN_H */

