mTower
hello_world_ta.h
1 
23 #ifndef __APPS_HELLO_WORLD_HELLO_WORLD_TA_H_
24 #define __APPS_HELLO_WORLD_HELLO_WORLD_TA_H_
25 
26 /* Included Files */
27 /* All header files are included here. */
28 
29 /* Pre-processor Definitions */
30 /* All C pre-processor macros are defined here. */
31 /*
32  * This UUID is generated with uuidgen
33  * the ITU-T UUID generator at http://www.itu.int/ITU-T/asn1/uuid.html
34  */
35 #define TA_HELLO_WORLD_UUID \
36  { 0x8aaaf200, 0x2450, 0x11e4, \
37  { 0xab, 0xe2, 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b} }
38 
39 /* The function IDs implemented in this TA */
40 #define TA_HELLO_WORLD_CMD_INC_VALUE 0
41 #define TA_HELLO_WORLD_CMD_DEC_VALUE 1
42 
43 
44 /* Public Types */
45 /* Any types, enumerations, structures or unions are defined here. */
46 
47 
48 /* Public Data */
49 /* All data declarations with global scope appear here, preceded by
50  * the definition EXTERN.
51  */
52 
53 
54 /* Inline Functions */
55 /* Any static inline functions may be defined in this grouping.
56  * Each is preceded by a function header similar to the below.
57  */
58 
72 /* Public Function Prototypes */
73 /* All global functions in the file are prototyped here. The keyword
74  * extern or the definition EXTERN are never used with function
75  * prototypes.
76  */
77 
92 #endif /* __APPS_HELLO_WORLD_HELLO_WORLD_TA_H_ */