mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 10:33:52 +01:00
da31917f4f
Relicense permission collected from all relevant authors as tallied at: https://github.com/rlenferink/libzmq-relicense/blob/master/checklist.md The relicense grants are collected under RELICENSE/ and will be moved to the above repository in a later commit. Fixes https://github.com/zeromq/libzmq/issues/2376
17 lines
464 B
C++
17 lines
464 B
C++
/* SPDX-License-Identifier: MPL-2.0 */
|
|
|
|
#ifndef __ZMQ_PLATFORM_HPP_INCLUDED__
|
|
#define __ZMQ_PLATFORM_HPP_INCLUDED__
|
|
|
|
// This is the platform definition for the MSVC platform.
|
|
// As a first step of the build process it is copied to
|
|
// zmq directory to take place of platform.hpp generated from
|
|
// platform.hpp.in on platforms supported by GNU autotools.
|
|
// Place any MSVC-specific definitions here.
|
|
|
|
#define ZMQ_HAVE_WINDOWS
|
|
|
|
#define ZMQ_USE_LIBSODIUM
|
|
|
|
#endif
|