⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 version.h

📁 About: hamsterdb is a database engine written in ANSI C. It supports a B+Tree index structure, uses
💻 H
字号:
/** * Copyright (C) 2005-2007 Christoph Rupp (chris@crupp.de). * All rights reserved. See file LICENSE for licence and copyright * information. * * this file contains the version of hamster * */#ifndef HAM_VERSION_H__#define HAM_VERSION_H__#ifdef __cplusplusextern "C" {#endif /** * the version numbers * * @remark a change of the major revision means a significant update with * a lot of new features, API changes and an incompatible database format.  * the minor revision means that updates were not so significant, but  * the database format is no longer compatible. a change of the revision  * means the release is a bugfix with a compatible database format. */#define HAM_VERSION_MAJ 0#define HAM_VERSION_MIN 4#define HAM_VERSION_REV 4#define HAM_VERSION_STR "0.4.4"#ifdef __cplusplus} // extern "C"#endif #endif /* HAM_VERSION_H__ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -