1 Star 1 Fork 0

xu / MFCCapture

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
macros.h 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
xu 提交于 2016-12-23 21:16 . 2016122202
/*
Copyright (c) 2005-2009 by Jakob Schroeter <js@camaya.net>
This file is part of the gloox library. http://camaya.net/gloox
This software is distributed under a license. The full license
agreement can be found in the file LICENSE in this distribution.
This software may not be copied, modified, sold or distributed
other than expressed in the named license agreement.
This software is distributed without any warranty.
*/
#ifndef GLOOX_MACROS_H__
#define GLOOX_MACROS_H__
#if defined( _MSC_VER ) || defined( _WIN32_WCE )
# pragma warning( disable:4251 )
# pragma warning( disable:4786 )
#endif
#if defined( _WIN32 ) && !defined( __SYMBIAN32__ )
# if defined( GLOOX_EXPORTS ) || defined( DLL_EXPORT )
# define GLOOX_API __declspec( dllexport )
# else
# if defined( GLOOX_IMPORTS ) || defined( DLL_IMPORT )
# define GLOOX_API __declspec( dllimport )
# endif
# endif
#endif
#ifndef GLOOX_API
# define GLOOX_API
#endif
#if defined( __GNUC__ ) && ( __GNUC__ - 0 > 3 || ( __GNUC__ - 0 == 3 && __GNUC_MINOR__ - 0 >= 2 ) )
# define GLOOX_DEPRECATED __attribute__ ( (__deprecated__) )
# define GLOOX_DEPRECATED_CTOR explicit GLOOX_DEPRECATED
#elif defined( _MSC_VER ) && ( _MSC_VER >= 1300 )
# define GLOOX_DEPRECATED __declspec( deprecated )
# define GLOOX_DEPRECATED_CTOR explicit GLOOX_DEPRECATED
#else
# define GLOOX_DEPRECATED
# define GLOOX_DEPRECATED_CTOR
#endif
#endif // GLOOX_MACROS_H__
1
https://gitee.com/xtvj/MFCCapture.git
git@gitee.com:xtvj/MFCCapture.git
xtvj
MFCCapture
MFCCapture
master

搜索帮助