ta header trieu (done)

 avatar
Huongnm
c_cpp
a month ago
972 B
6
Indexable
#pragma once
#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                {0x3f2b1a67, 0xbb77, 0x407f, {0xaa, 0x64, 0x05, 0x22, 0x92, 0x03, 0x2b, 0x6f}}
#define TA_PROP_SINGLE_INSTANCE     FALSE
#define TA_PROP_MULTISESSION        FALSE
#define TA_PROP_INSTANCE_KEEPALIVE  FALSE
#define TA_PROP_DATASIZE            RLIM_INFINITY
#define TA_PROP_STACKSIZE           0x4000
#define TA_PROP_GROUP_ID            "samsung_ta"
#define TA_PROP_VERSION             "ver. none      "

#define CMD_SAVE_PASSWORD		1
#define CMD_CALL_PASSWORD		2

#define MAX_SIZE 64

typedef struct 
{
	char package_name[MAX_SIZE];
	char user_id[MAX_SIZE];
	char password[MAX_SIZE];
} PasswordEntry;

/* !!!! WARNING !!!! Do not write your code in this file !!!! */
#include <ta_property.h>
Editor is loading...
Leave a Comment