summaryrefslogtreecommitdiffstats
path: root/src/occApplet/template.c
blob: 749f79da22194e96965dff1de92913201628c244 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/******************************************************************************
// @file <filename.c>
// @brief <shortDesc>
*/
/******************************************************************************
 *
 *       @page ChangeLogs Change Logs
 *       @section <filename.c> <FILENAME.c>
 *       @verbatim
 *
 *   Flag    Def/Fea    Userid    Date        Description
 *   ------- ---------- --------  ----------  ----------------------------------
 *                      USERID    MM/DD/YY    created
 *
 *  @endverbatim
 *
 *///*************************************************************************/


//*************************************************************************
// Includes
//*************************************************************************
#include <common_types.h>   // imageHdr_t declaration and image header macro
#include <errl.h>           // For error handle
#include "ssx_io.h"         // For printfs
#include <trac.h>           // For traces
#include <appletId.h>       // For applet ID

//*************************************************************************
// Externs
//*************************************************************************

//*************************************************************************
// Macros
//*************************************************************************

//*************************************************************************
// Defines/Enums
//*************************************************************************
#define <FUNCNM>_ID  "<APPLET_ID_STR>\0"

//*************************************************************************
// Structures
//*************************************************************************

//*************************************************************************
// Globals
//*************************************************************************

//*************************************************************************
// Function Prototypes
//*************************************************************************

//*************************************************************************
// Functions
//*************************************************************************

//*************************************************************************
// Entry point function
//*************************************************************************
errlHndl_t <funcNm>(void * i_arg)
{
    TRAC_INFO("Enter");
    errlHndl_t l_err = NULL;

    TRAC_INFO("Exit");
    return l_err;
}

//*************************************************************************
// Image Header
//*************************************************************************
IMAGE_HEADER (G_<funcNm>,<funcNm>,<FUNCNM>_ID,<APLT_ID>);
OpenPOWER on IntegriCloud