Subversion Repositories seema-scanner

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 jakw 1
/*****************************************************************************
2
 **             TEXAS INSTRUMENTS PROPRIETARY INFORMATION
3
 **
4
 **  (c) Copyright, Texas Instruments Incorporated, 2012-2013.
5
 **      All Rights Reserved.
6
 **
7
 **  Property of Texas Instruments Incorporated. Restricted Rights -
8
 **  Use, duplication, or disclosure is subject to restrictions set
9
 **  forth in TI's program license agreement and associated documentation.
10
 ******************************************************************************/
11
/**
12
 *
13
 * @file    common.h
14
 *
15
 * @brief	General declarations and definations used in other files.
16
 **/
17
/*****************************************************************************/
18
 
19
#ifndef COMMON_H_
20
#define COMMON_H_
21
 
22
#include <stdio.h>
23
#include <stdlib.h>
24
#include <string.h>
25
 
26
#ifdef __cplusplus
27
extern "C" {
28
#endif
29
 
30
#define TRUE                    1
31
#define FALSE                   0
32
 
33
typedef int BOOL;
34
typedef unsigned uint32;
35
typedef unsigned char uint8;
36
typedef unsigned short uint16;
37
 
38
#ifdef __cplusplus
39
}
40
#endif
41
 
42
 
43
#endif /* COMMON_H_ */