📄 wmversion.h
字号:
/*-----------------------------------------------------------------------------
* Copyright (c) Wolfson Microelectronics plc. All rights reserved.
*
* This software as well as any related documentation is furnished under
* license and may only be used or copied in accordance with the terms of the
* license. The information in this file is furnished for informational use
* only, is subject to change without notice, and should not be construed as
* a commitment by Wolfson Microelectronics plc. Wolfson Microelectronics plc
* assumes no responsibility or liability for any errors or inaccuracies that
* may appear in this document or any software that may be provided in
* association with this document.
*
* Except as permitted by such license, no part of this document may be
* reproduced, stored in a retrieval system, or transmitted in any form or by
* any means without the express written consent of Wolfson Microelectronics plc.
*
* $Id: WMVersion.h 1299 2005-02-22 16:09:47Z ib $
*
* Constants for the Wolfson library version.
*
*
* Warning:
* This driver is specifically written for Wolfson Codecs. It is not a
* general CODEC device driver.
*
*---------------------------------------------------------------------------*/
#ifndef __WMVERSION_H__
#define __WMVERSION_H__
/*
* Include files
*/
/*
* Library version.
*/
#ifndef WM_INTERNAL_BUILD
# define WM_MAJOR_VERSION 0
# define WM_MINOR_VERSION 9
# define WM_REVISION 13
# define WM_BUILD_VERSION 0
# define WM_MAJOR_VERSION_STR "0"
# define WM_MINOR_VERSION_STR "9"
# define WM_REVISION_STR "13"
# define WM_BUILD_VERSION_STR "0"
# define WM_BUILD_SPECIAL "Beta 5"
#endif
#define WM_KIT_DATE "21-Sep-2007 7:51:58"
#define WM_MAKE_VERSION(_major, _minor, _rev, _build) (((_major)<<24)|((_minor)<<16)|(_rev)<<8|(_build))
#define WM_VERSION WM_MAKE_VERSION( WM_MAJOR_VERSION, WM_MINOR_VERSION, WM_REVISION, WM_BUILD_VERSION )
#define WM_VERSION_STRING WM_MAJOR_VERSION_STR "."\
WM_MINOR_VERSION_STR "."\
WM_REVISION_STR " "\
WM_BUILD_SPECIAL
/*
* Defines for Wolfson development.
*/
#ifdef WM_INTERNAL_BUILD
# define WM_MAJOR_VERSION 0
# define WM_MINOR_VERSION 0
# define WM_REVISION 0
# define WM_BUILD_VERSION 0
# define WM_MAJOR_VERSION_STR "0"
# define WM_MINOR_VERSION_STR "0"
# define WM_REVISION_STR "0"
# define WM_BUILD_VERSION_STR "0"
# define WM_BUILD_SPECIAL "Internal development build"
#endif
/*
* Function prototypes
*/
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* __WMTYPES_H__ */
/*------------------------------ END OF FILE ---------------------------------*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -