forked from robopsi/rkupdate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RKBoot.h
94 lines (88 loc) · 2.54 KB
/
RKBoot.h
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#ifndef RKBOOT_HEADER
#define RKBOOT_HEADER
#include "DefineHeader.h"
#define BOOT_RESERVED_SIZE 57
#pragma pack(1)
typedef struct
{
UINT uiTag;
USHORT usSize;
DWORD dwVersion;
DWORD dwMergeVersion;
STRUCT_RKTIME stReleaseTime;
ENUM_RKDEVICE_TYPE emSupportChip;
UCHAR uc471EntryCount;
DWORD dw471EntryOffset;
UCHAR uc471EntrySize;
UCHAR uc472EntryCount;
DWORD dw472EntryOffset;
UCHAR uc472EntrySize;
UCHAR ucLoaderEntryCount;
DWORD dwLoaderEntryOffset;
UCHAR ucLoaderEntrySize;
UCHAR ucSignFlag;
UCHAR ucRc4Flag;
UCHAR reserved[BOOT_RESERVED_SIZE];
}STRUCT_RKBOOT_HEAD,*PSTRUCT_RKBOOT_HEAD;
typedef struct
{
UCHAR ucSize;
ENUM_RKBOOTENTRY emType;
WCHAR szName[20];
DWORD dwDataOffset;
DWORD dwDataSize;
DWORD dwDataDelay;//ÒÔÃëΪµ¥Î»
}STRUCT_RKBOOT_ENTRY,*PSTRUCT_RKBOOT_ENTRY;
#pragma pack()
class CRKBoot
{
public:
bool GetRc4DisableFlag();
property<CRKBoot,bool,READ_ONLY> Rc4DisableFlag;
bool GetSignFlag();
property<CRKBoot,bool,READ_ONLY> SignFlag;
UINT GetVersion();
property<CRKBoot,UINT,READ_ONLY> Version;
UINT GetMergeVersion();
property<CRKBoot,UINT,READ_ONLY> MergeVersion;
STRUCT_RKTIME GetReleaseTime();
property<CRKBoot,STRUCT_RKTIME,READ_ONLY> ReleaseTime;
ENUM_RKDEVICE_TYPE GetSupportDevice();
property<CRKBoot,ENUM_RKDEVICE_TYPE,READ_ONLY> SupportDevice;
unsigned char GetEntry471Count();
property<CRKBoot,unsigned char,READ_ONLY> Entry471Count;
unsigned char GetEntry472Count();
property<CRKBoot,unsigned char,READ_ONLY> Entry472Count;
unsigned char GetEntryLoaderCount();
property<CRKBoot,unsigned char,READ_ONLY> EntryLoaderCount;
bool CrcCheck();
bool SaveEntryFile(ENUM_RKBOOTENTRY type,UCHAR ucIndex,tstring fileName);
bool GetEntryProperty(ENUM_RKBOOTENTRY type,UCHAR ucIndex,DWORD &dwSize,DWORD &dwDelay,tchar *pName=NULL);
CHAR GetIndexByName(ENUM_RKBOOTENTRY type,tchar *pName);
bool GetEntryData(ENUM_RKBOOTENTRY type,UCHAR ucIndex,PBYTE lpData);
CRKBoot(PBYTE lpBootData,DWORD dwBootSize,bool &bCheck);
~CRKBoot();
protected:
private:
bool m_bRc4Disable;
bool m_bSignFlag;
DWORD m_version;
DWORD m_mergeVersion;
STRUCT_RKTIME m_releaseTime;
ENUM_RKDEVICE_TYPE m_supportDevice;
DWORD m_471Offset;
UCHAR m_471Size;
UCHAR m_471Count;
DWORD m_472Offset;
UCHAR m_472Size;
UCHAR m_472Count;
DWORD m_loaderOffset;
UCHAR m_loaderSize;
UCHAR m_loaderCount;
BYTE m_crc[4];
PBYTE m_BootData;
DWORD m_BootSize;
USHORT m_BootHeadSize;
void WCHAR_To_char(WCHAR *src,char *dst,int len);
};
#endif