487fb5f90bd8b140d9084e2a374208bec5e7c309
[satune.git] / src / types.h
1 /*
2  * To change this license header, choose License Headers in Project Properties.
3  * To change this template file, choose Tools | Templates
4  * and open the template in the editor.
5  */
6
7 /* 
8  * File:   Type.h
9  * Author: hamed
10  *
11  * Created on June 13, 2017, 1:33 PM
12  */
13
14 #ifndef TYPE_H
15 #define TYPE_H
16
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20
21 typedef unsigned long int uint64;
22 typedef uint64 Type;    
23
24 struct Element{
25     uint64 value;
26 };
27
28 typedef struct Element ELEMENT;
29 #ifdef __cplusplus
30 }
31 #endif
32
33 #endif /* TYPE_H */
34