build_num.h

来自「linux for amd development lx8」· C头文件 代码 · 共 36 行

H
36
字号
#ifndef BUILD_NUM_H#define BUILD_NUM_H#ifdef AMD_BUILDNUM_DEFINED#error "Caution:  You have muliple version files in your path.  Please correct this."#endif#define AMD_BUILDNUM_DEFINED/* Define the following for your driver */#define _NAME "AMD Geode LX AES driver"#define _MAJOR 02#define _MINOR 00/* This defines the current buildlevel and revision of the code */#define _BL 06#define _BLREV 01#ifdef _BLREV#define _BUILDLEVEL _x(_BL) "." _x(_BLREV)#else#define _BUILDLEVEL _x(_BL)#endif/* Use this macro to get the version string */#define AMD_VERSION _NAME " " _x(_MAJOR) "." _x(_MINOR) "." _BUILDLEVEL/* Syntatic sugar for use above - you probably don't have to touch this */#define _x(s) _s(s)#define _s(s) #s#endif

⌨️ 快捷键说明

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