build files and documentation: MIT images / sources: GPL-2.0-only breeze icons: LGPL-2.0-only Microsoft MSM file, vc redist license
23 lines
904 B
C
23 lines
904 B
C
/*
|
|
* Deskflow -- mouse and keyboard sharing utility
|
|
* SPDX-FileCopyrightText: (C) 2012 - 2016 Symless Ltd.
|
|
* SPDX-FileCopyrightText: (C) 2002 Chris Schoeneman
|
|
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#if defined(_MSC_VER)
|
|
#pragma warning(disable : 4786) // identifier truncated
|
|
#pragma warning(disable : 4514) // unreferenced inline
|
|
#pragma warning(disable : 4710) // not inlined
|
|
#pragma warning(disable : 4663) // C++ change, template specialization
|
|
#pragma warning(disable : 4503) // decorated name length too long
|
|
#pragma warning(push, 3)
|
|
#pragma warning(disable : 4018) // signed/unsigned mismatch
|
|
#pragma warning(disable : 4284)
|
|
#pragma warning(disable : 4146) // unary minus on unsigned value
|
|
#pragma warning(disable : 4127) // conditional expression is constant
|
|
#pragma warning(disable : 4701) // variable possibly used uninitialized
|
|
#endif
|