1// This file was extracted from the TCG Published
2// Trusted Platform Module Library
3// Part 4: Supporting Routines
4// Family "2.0"
5// Level 00 Revision 01.16
6// October 30, 2014
7
8#ifndef        _TPM_H_
9#define        _TPM_H_
10#include       "bool.h"
11//
12#include    "Implementation.h"
13#include    "TPM_Types.h"
14#include    "swap.h"
15
16           // from the title page of the specification
17#define TPM_SPEC_FAMILY      0x322E3000   // This is 2.0 in ASCII
18#define TPM_SPEC_LEVEL       0
19#define TPM_SPEC_VERSION     116  // Major_revision * 100 + Minor_revision
20#define TPM_SPEC_DAY_OF_YEAR 303
21#define TPM_SPEC_YEAR        2014
22
23#endif // _TPM_H_
24