FirewareOriginMAT.h
1.2 KB
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
/**
********************************************************************
* @file FirewareOriginMAT.h
* FirewareOriginMAT.h 的头文件
*
*********************************************************************
*/
/* Define to prevent recursive inclusion 避免重定义 -------------------------------------*/
#ifndef FIREWARE_ORIGIN_MAT_H
#define FIREWARE_ORIGIN_MAT_H
/* Includes ------------------------------------------------------------------*/
#include "JZsdk_Base/JZsdk_Code/JZsdk_Code.h"
#ifdef __cplusplus
extern "C" {
#endif
/* Exported constants --------------------------------------------------------*/
/* 常亮定义*/
T_JZsdkReturnCode FOMAT_FirewareOriginRegion_Init(int SerialType, unsigned char *SerialNumber, unsigned int SerialNumberLen);
T_JZsdkReturnCode FOMAT_Get_FirewareOriginRegion();
/* Exported types ------------------------------------------------------------*/
typedef enum OriginRegionPlace
{
ORIGIN_DEFAULT = 0x0000,
ORIGIN_CN = 0x0001, //中区通用码
ORIGIN_EN = 0x0002, //英区通用码
ORIGIN_NA = 0x0003, //美洲码
ORIGIN_EU = 0x0004, //欧洲码
}OriginRegionPlace;
/* Exported functions --------------------------------------------------------*/
#ifdef __cplusplus
}
#endif
#endif