📄 build_num.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -