Skip to content

Commit fbd7f74

Browse files
committed
moved headers into subdir to avoid ambiguity
1 parent 41bbb89 commit fbd7f74

20 files changed

+21
-19
lines changed

examples/dl_client.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#endif
1919
#include <unistd.h>
2020

21-
#include "device_listener.h"
21+
#include <iwdp/device_listener.h>
2222

2323
struct my_struct {
2424
int fd;

examples/wi_client.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#endif
2121
#include <unistd.h>
2222

23-
#include "webinspector.h"
23+
#include <iwdp/webinspector.h>
2424

2525
// our state
2626
struct my_wi_struct {

examples/ws_echo1.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <string.h>
1111

1212
#include "ws_echo_common.h"
13-
#include "websocket.h"
13+
#include <iwdp/websocket.h>
1414

1515
#ifdef WIN32
1616
#define WIN32_LEAN_AND_MEAN 1

examples/ws_echo2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#endif
2323
#include <errno.h>
2424

25-
#include "socket_manager.h"
25+
#include <iwdp/socket_manager.h>
2626
#include "ws_echo_common.h"
2727

2828
struct my_sm_struct {

examples/ws_echo_common.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#endif
2020

2121
#include "ws_echo_common.h"
22-
#include "websocket.h"
22+
#include <iwdp/websocket.h>
2323
#include "asprintf.h"
2424

2525
// websocket callbacks:

examples/ws_echo_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ extern "C" {
1717
#include <stdint.h>
1818
#include <stdlib.h>
1919

20-
#include "websocket.h"
20+
#include <iwdp/websocket.h>
2121

2222
struct my_struct {
2323
int fd;

include/Makefile.am

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
# Google BSD license http://code.google.com/google_bsd_license.html
22
# Copyright 2012 Google Inc. [email protected]
33

4+
EXTRA_DIST = asprintf.h getline.h stpcpy.h stpncpy.h strcasestr.h strndup.h
5+
46
nobase_include_HEADERS = \
5-
base64.h \
6-
char_buffer.h \
7-
device_listener.h \
8-
hash_table.h \
9-
ios_webkit_debug_proxy.h \
10-
port_config.h \
11-
rpc.h \
12-
sha1.h \
13-
socket_manager.h \
14-
validate_utf8.h \
15-
webinspector.h \
16-
websocket.h
7+
iwdp/base64.h \
8+
iwdp/char_buffer.h \
9+
iwdp/device_listener.h \
10+
iwdp/hash_table.h \
11+
iwdp/ios_webkit_debug_proxy.h \
12+
iwdp/port_config.h \
13+
iwdp/rpc.h \
14+
iwdp/sha1.h \
15+
iwdp/socket_manager.h \
16+
iwdp/validate_utf8.h \
17+
iwdp/webinspector.h \
18+
iwdp/websocket.h
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)