#ifndef __TEST_TA_H__
#define __TEST_TA_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			{0,0,0,{0,0,0,0,0,0,0,0x46}} //{0,0,0,{0,0,0,0,0x48,0x44,0x43,0x50}}//
#define TA_PROP_GROUP_ID		"samsung_ta"
#define TA_PROP_SINGLE_INSTANCE		FALSE
#define TA_PROP_MULTISESSION		FALSE
#define TA_PROP_INSTANCE_KEEPALIVE	FALSE
#define TA_PROP_DATASIZE		RLIM_INFINITY

#ifndef USE_NEW_STACK
#define TA_PROP_STACKSIZE		0x4000
#else
#define TA_PROP_STACKSIZE		0x10000
#endif /* USE_NEW_STACK */
#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_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 after this line !!!! */
#include <ta_property.h>

#endif
