27 lines
414 B
C
27 lines
414 B
C
|
/*
|
|||
|
* build_version.h
|
|||
|
*
|
|||
|
* Created on: 17 <EFBFBD><EFBFBD><EFBFBD>. 2022 <EFBFBD>.
|
|||
|
* Author: yura
|
|||
|
*/
|
|||
|
|
|||
|
#ifndef SRC_N12_LIBS_BUILD_VERSION_H_
|
|||
|
#define SRC_N12_LIBS_BUILD_VERSION_H_
|
|||
|
|
|||
|
|
|||
|
#ifndef BUILD_DATA
|
|||
|
#define BUILD_DATA 22.00
|
|||
|
#endif
|
|||
|
|
|||
|
#ifndef BUILD_TIME
|
|||
|
#define BUILD_TIME 00.01
|
|||
|
#endif
|
|||
|
|
|||
|
extern float build_data_f;
|
|||
|
extern float build_time_f;
|
|||
|
extern int build_data_i;
|
|||
|
extern int build_time_i;
|
|||
|
|
|||
|
|
|||
|
#endif /* SRC_N12_LIBS_BUILD_VERSION_H_ */
|