1
10
13
14
20
21
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
58
59
66
67
68
69
70
71
73
74
75
76
77
78
...
...
...
...
...
#ifndef NX_SECURE_PORT_H
#define NX_SECURE_PORT_H
/* ... */
#ifdef NX_SECURE_INCLUDE_USER_DEFINE_FILE
/* ... */
#include "nx_secure_user.h"
/* ... */#endif
#ifdef NX_SECURE_SYSTEM_INIT
CHAR _nx_secure_version_id[] =
"Copyright (c) Microsoft Corporation. All rights reserved. * NetX Secure Generic Version G6.1.10 *";/* ... */
#else
extern CHAR _nx_secure_version_id[];
#endif
/* ... */
#endif...