26 lines
904 B
C
26 lines
904 B
C
/*===================================================================
|
|
* Identification of the current project.
|
|
* Identify project name, current version and current date.
|
|
* Set define to correct strings.
|
|
*=================================================================*/
|
|
|
|
/*
|
|
* !!
|
|
* !! DO NOT PUT CPP COMMENTS IN THAT FILE
|
|
* !!
|
|
*/
|
|
|
|
/******************************************/
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif /* _MSC_VER >= 1000 */
|
|
/******************************************/
|
|
|
|
#ifndef __PROJID_H__
|
|
#define __PROJID_H__
|
|
|
|
#define C_szMainVersion "Mai V5.0.0" /* The format is XXX Va.b.c with Xxx is the Tag of the module */
|
|
#define C_szMainFullName "Main module" /* the complete and clear name of the module */
|
|
#define C_szMainDate "Apr 28 1997" /* The format is "Mmm dd yyyy".You can use __DATE__ but be careful that you have the control of the compilation*/
|
|
|
|
#endif /* __PROJID_H__ */ |