1 /***************************************************************************
2  * Copyright (c) 2024 Microsoft Corporation
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the MIT License which is available at
6  * https://opensource.org/licenses/MIT.
7  *
8  * SPDX-License-Identifier: MIT
9  **************************************************************************/
10 
11 
12 /**************************************************************************/
13 /**************************************************************************/
14 /**                                                                       */
15 /** NetX Secure Component                                                 */
16 /**                                                                       */
17 /**    Transport Layer Security (TLS)                                     */
18 /**                                                                       */
19 /**************************************************************************/
20 /**************************************************************************/
21 
22 
23 /**************************************************************************/
24 /*                                                                        */
25 /*  PORT SPECIFIC C INFORMATION                            RELEASE        */
26 /*                                                                        */
27 /*    nx_secure_port.h                                    PORTABLE C      */
28 /*                                                           6.1          */
29 /*                                                                        */
30 /*  AUTHOR                                                                */
31 /*                                                                        */
32 /*    Timothy Stapko, Microsoft Corporation                               */
33 /*                                                                        */
34 /*  DESCRIPTION                                                           */
35 /*                                                                        */
36 /*    This file contains data type definitions for generic.               */
37 /*                                                                        */
38 /*  RELEASE HISTORY                                                       */
39 /*                                                                        */
40 /*    DATE              NAME                      DESCRIPTION             */
41 /*                                                                        */
42 /*  05-19-2020     Timothy Stapko           Initial Version 6.0           */
43 /*  09-30-2020     Timothy Stapko           Modified comment(s),          */
44 /*                                            resulting in version 6.1    */
45 /*                                                                        */
46 /**************************************************************************/
47 
48 #ifndef NX_SECURE_PORT_H
49 #define NX_SECURE_PORT_H
50 
51 
52 /* Determine if the optional NetX Secure user define file should be used.  */
53 
54 /*
55    #define NX_SECURE_INCLUDE_USER_DEFINE_FILE
56  */
57 #ifdef NX_SECURE_INCLUDE_USER_DEFINE_FILE
58 
59 
60 /* Yes, include the user defines in nx_user.h. The defines in this file may
61    alternately be defined on the command line.  */
62 
63 #include "nx_secure_user.h"
64 #endif
65 
66 
67 /* Define the version ID of NetX Secure.  This may be utilized by the application.  */
68 
69 #ifdef NX_SECURE_SYSTEM_INIT
70 CHAR                            _nx_secure_version_id[] =
71                                     "Copyright (c) 2024 Microsoft Corporation.  *  NetX Secure Generic Version G6.4.1 *";
72 #else
73 extern  CHAR                    _nx_secure_version_id[];
74 #endif
75 
76 #endif
77 
78