91 lines
3.0 KiB
C
91 lines
3.0 KiB
C
|
|
/******************************************************************************
|
||
|
|
File : MarshallerTask.h
|
||
|
|
-------------------------------------------------------------------------------
|
||
|
|
Author : Hilscher GmbH
|
||
|
|
|
||
|
|
Copyright : (c) 2009 Hilscher GmbH. All rights reserved.
|
||
|
|
Redistribution or use without without Hilscher's express
|
||
|
|
written permission is prohibited.
|
||
|
|
|
||
|
|
Project : netX Marshaller
|
||
|
|
-------------------------------------------------------------------------------
|
||
|
|
Description : Version information for netX Marshaller
|
||
|
|
-------------------------------------------------------------------------------
|
||
|
|
Changes:
|
||
|
|
|
||
|
|
Date Author Modification
|
||
|
|
---------- ------------- ------------------------------------------------
|
||
|
|
2009-09-14 M. Streubel Added MARSHALLER_VERSION_TEXT.
|
||
|
|
2009-09-01 M. Streubel Version change to 2.0.x.0.
|
||
|
|
2009-07-28 M. Streubel File created.
|
||
|
|
******************************************************************************/
|
||
|
|
|
||
|
|
|
||
|
|
#ifndef __MARSHALLER_VERSION_H
|
||
|
|
#define __MARSHALLER_VERSION_H
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/*****************************************************************************/
|
||
|
|
/* Include Files Required */
|
||
|
|
/*****************************************************************************/
|
||
|
|
|
||
|
|
|
||
|
|
/* none */
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/*****************************************************************************/
|
||
|
|
/* Symbol Definitions */
|
||
|
|
/*****************************************************************************/
|
||
|
|
|
||
|
|
|
||
|
|
#define MARSHALLER_VERSION_MAJOR 2
|
||
|
|
#define MARSHALLER_VERSION_MINOR 4
|
||
|
|
#define MARSHALLER_VERSION_BUILD 0
|
||
|
|
#define MARSHALLER_VERSION_REVISION 1
|
||
|
|
#define MARSHALLER_VERSION_TEXT "2.4.0.1"
|
||
|
|
|
||
|
|
#define MARSHALLER_DATE_YEAR 2022
|
||
|
|
#define MARSHALLER_DATE_MONTH 7
|
||
|
|
#define MARSHALLER_DATE_DAY 15
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/*****************************************************************************/
|
||
|
|
/* Class, Type, and Structure Definitions */
|
||
|
|
/*****************************************************************************/
|
||
|
|
|
||
|
|
|
||
|
|
/* none */
|
||
|
|
|
||
|
|
|
||
|
|
/*****************************************************************************/
|
||
|
|
/* Global Variables */
|
||
|
|
/*****************************************************************************/
|
||
|
|
|
||
|
|
|
||
|
|
/* none */
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/*****************************************************************************/
|
||
|
|
/* Macros */
|
||
|
|
/*****************************************************************************/
|
||
|
|
|
||
|
|
|
||
|
|
/* none */
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/*****************************************************************************/
|
||
|
|
/* Functions */
|
||
|
|
/*****************************************************************************/
|
||
|
|
|
||
|
|
|
||
|
|
/* none */
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#endif /* __MARSHALLER_VERSION_H */
|