Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
5b83fe77
Commit
5b83fe77
authored
Sep 26, 2012
by
Ian Barber
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #430 from ipechorin/master
Update MSVC2008 project after recent changes; fix compilation errors
parents
a49e392e
9b58372a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
44 additions
and
6 deletions
+44
-6
libzmq.vcproj
builds/msvc/libzmq/libzmq.vcproj
+36
-4
encoder.hpp
src/encoder.hpp
+6
-0
i_decoder.hpp
src/i_decoder.hpp
+1
-1
i_encoder.hpp
src/i_encoder.hpp
+1
-1
No files found.
builds/msvc/libzmq/libzmq.vcproj
View file @
5b83fe77
...
...
@@ -267,10 +267,6 @@
RelativePath=
"..\..\..\src\decoder.cpp"
>
</File>
<File
RelativePath=
"..\..\..\src\device.cpp"
>
</File>
<File
RelativePath=
"..\..\..\src\devpoll.cpp"
>
...
...
@@ -383,6 +379,10 @@
RelativePath=
"..\..\..\src\poller_base.cpp"
>
</File>
<File
RelativePath=
"..\..\..\src\proxy.cpp"
>
</File>
<File
RelativePath=
"..\..\..\src\pub.cpp"
>
...
...
@@ -439,6 +439,10 @@
RelativePath=
"..\..\..\src\sub.cpp"
>
</File>
<File
RelativePath=
"..\..\..\src\tcp.cpp"
>
</File>
<File
RelativePath=
"..\..\..\src\tcp_address.cpp"
>
...
...
@@ -459,6 +463,14 @@
RelativePath=
"..\..\..\src\trie.cpp"
>
</File>
<File
RelativePath=
"..\..\..\src\v1_decoder.cpp"
>
</File>
<File
RelativePath=
"..\..\..\src\v1_encoder.cpp"
>
</File>
<File
RelativePath=
"..\..\..\src\xpub.cpp"
>
...
...
@@ -657,6 +669,10 @@
RelativePath=
"..\..\..\src\poller_base.hpp"
>
</File>
<File
RelativePath=
"..\..\..\src\proxy.hpp"
>
</File>
<File
RelativePath=
"..\..\..\src\pub.hpp"
>
...
...
@@ -713,6 +729,10 @@
RelativePath=
"..\..\..\src\sub.hpp"
>
</File>
<File
RelativePath=
"..\..\..\src\tcp.hpp"
>
</File>
<File
RelativePath=
"..\..\..\src\tcp_address.hpp"
>
...
...
@@ -733,6 +753,18 @@
RelativePath=
"..\..\..\src\trie.hpp"
>
</File>
<File
RelativePath=
"..\..\..\src\v1_decoder.hpp"
>
</File>
<File
RelativePath=
"..\..\..\src\v1_encoder.hpp"
>
</File>
<File
RelativePath=
"..\..\..\src\v1_protocol.hpp"
>
</File>
<File
RelativePath=
"..\..\..\src\windows.hpp"
>
...
...
src/encoder.hpp
View file @
5b83fe77
...
...
@@ -22,6 +22,12 @@
#ifndef __ZMQ_ENCODER_HPP_INCLUDED__
#define __ZMQ_ENCODER_HPP_INCLUDED__
#if defined(_MSC_VER)
#ifndef NOMINMAX
#define NOMINMAX
#endif
#endif
#include <stddef.h>
#include <string.h>
#include <stdlib.h>
...
...
src/i_decoder.hpp
View file @
5b83fe77
...
...
@@ -21,7 +21,7 @@
#ifndef __ZMQ_I_DECODER_HPP_INCLUDED__
#define __ZMQ_I_DECODER_HPP_INCLUDED__
#include
<stdint.h>
#include
"stdint.hpp"
namespace
zmq
{
...
...
src/i_encoder.hpp
View file @
5b83fe77
...
...
@@ -21,7 +21,7 @@
#ifndef __ZMQ_I_ENCODER_HPP_INCLUDED__
#define __ZMQ_I_ENCODER_HPP_INCLUDED__
#include
<stdint.h>
#include
"stdint.hpp"
namespace
zmq
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment