📄 macros.h
字号:
/* Copyright (c) 2005-2008 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#ifdef _WIN32# ifdef GLOOX_EXPORTS# define GLOOX_API __declspec( dllexport )# else# ifdef GLOOX_IMPORTS# 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__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -