Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
paho.mqtt.c
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
eclipse
paho.mqtt.c
Commits
8877a088
Commit
8877a088
authored
Nov 05, 2015
by
Ian Craggs
Committed by
Gerrit Code Review @ Eclipse.org
Nov 05, 2015
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Corrected case for include file names on windows" into develop
parents
2ae901be
00eb07c5
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
4 deletions
+8
-4
Thread.h
src/Thread.h
+1
-1
MQTTAsync_publish.c
src/samples/MQTTAsync_publish.c
+2
-0
MQTTAsync_subscribe.c
src/samples/MQTTAsync_subscribe.c
+2
-0
stdinpub.c
src/samples/stdinpub.c
+1
-1
stdoutsub.c
src/samples/stdoutsub.c
+1
-1
stdoutsuba.c
src/samples/stdoutsuba.c
+1
-1
No files found.
src/Thread.h
View file @
8877a088
...
@@ -20,7 +20,7 @@
...
@@ -20,7 +20,7 @@
#define THREAD_H
#define THREAD_H
#if defined(WIN32) || defined(WIN64)
#if defined(WIN32) || defined(WIN64)
#include <
W
indows.h>
#include <
w
indows.h>
#define thread_type HANDLE
#define thread_type HANDLE
#define thread_id_type DWORD
#define thread_id_type DWORD
#define thread_return_type DWORD
#define thread_return_type DWORD
...
...
src/samples/MQTTAsync_publish.c
View file @
8877a088
...
@@ -21,6 +21,8 @@
...
@@ -21,6 +21,8 @@
#if !defined(WIN32)
#if !defined(WIN32)
#include <unistd.h>
#include <unistd.h>
#else
#include <windows.h>
#endif
#endif
#define ADDRESS "tcp://m2m.eclipse.org:1883"
#define ADDRESS "tcp://m2m.eclipse.org:1883"
...
...
src/samples/MQTTAsync_subscribe.c
View file @
8877a088
...
@@ -21,6 +21,8 @@
...
@@ -21,6 +21,8 @@
#if !defined(WIN32)
#if !defined(WIN32)
#include <unistd.h>
#include <unistd.h>
#else
#include <windows.h>
#endif
#endif
#define ADDRESS "tcp://localhost:1883"
#define ADDRESS "tcp://localhost:1883"
...
...
src/samples/stdinpub.c
View file @
8877a088
...
@@ -44,7 +44,7 @@
...
@@ -44,7 +44,7 @@
#if defined(WIN32)
#if defined(WIN32)
#include <
W
indows.h>
#include <
w
indows.h>
#define sleep Sleep
#define sleep Sleep
#else
#else
#include <sys/time.h>
#include <sys/time.h>
...
...
src/samples/stdoutsub.c
View file @
8877a088
...
@@ -44,7 +44,7 @@
...
@@ -44,7 +44,7 @@
#if defined(WIN32)
#if defined(WIN32)
#include <
W
indows.h>
#include <
w
indows.h>
#define sleep Sleep
#define sleep Sleep
#else
#else
#include <sys/time.h>
#include <sys/time.h>
...
...
src/samples/stdoutsuba.c
View file @
8877a088
...
@@ -45,7 +45,7 @@
...
@@ -45,7 +45,7 @@
#if defined(WIN32)
#if defined(WIN32)
#include <
W
indows.h>
#include <
w
indows.h>
#define sleep Sleep
#define sleep Sleep
#else
#else
#include <sys/time.h>
#include <sys/time.h>
...
...
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