41 lines
1016 B
C
41 lines
1016 B
C
/*
|
|
* Copyright (c) 2026 YuQing <384681@qq.com>
|
|
*
|
|
* This program is free software: you can use, redistribute, and/or modify
|
|
* it under the terms of the Lesser GNU General Public License, version 3
|
|
* or later ("LGPL"), as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE.
|
|
*
|
|
* You should have received a copy of the Lesser GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
//fc_version.h
|
|
|
|
#ifndef _FC_VERSION_H
|
|
#define _FC_VERSION_H
|
|
|
|
#include "common_define.h"
|
|
|
|
#define FC_MAJOR_VERSION 1
|
|
#define FC_MINOR_VERSION 0
|
|
#define FC_PATCH_VERSION 86
|
|
|
|
#define FC_VERSION_INT FC_VERSION_TO_INT(FC_MAJOR_VERSION, \
|
|
FC_MINOR_VERSION, FC_PATCH_VERSION)
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int fc_version(Version *version);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|