Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
Windows: pull in uv-common.h from internal.h
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed May 15, 2012
1 parent 6257bba commit 7cf5154
Show file tree
Hide file tree
Showing 25 changed files with 3 additions and 24 deletions.
1 change: 0 additions & 1 deletion src/win/async.c
Expand Up @@ -23,7 +23,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"


/* Atomic set operation on char */
Expand Down
1 change: 0 additions & 1 deletion src/win/cares.c
Expand Up @@ -23,7 +23,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"


/*
Expand Down
1 change: 0 additions & 1 deletion src/win/core.c
Expand Up @@ -28,7 +28,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"


/* The only event loop we support right now */
Expand Down
1 change: 0 additions & 1 deletion src/win/dl.c
Expand Up @@ -21,7 +21,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"

static int uv__dlerror(uv_lib_t* lib, int errorno);

Expand Down
1 change: 0 additions & 1 deletion src/win/error.c
Expand Up @@ -27,7 +27,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"


/*
Expand Down
1 change: 0 additions & 1 deletion src/win/fs-event.c
Expand Up @@ -21,7 +21,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"

#include <assert.h>
#include <malloc.h>
Expand Down
1 change: 0 additions & 1 deletion src/win/fs.c
Expand Up @@ -32,7 +32,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"

#define UV_FS_ASYNC_QUEUED 0x0001
#define UV_FS_FREE_PATH 0x0002
Expand Down
1 change: 0 additions & 1 deletion src/win/getaddrinfo.c
Expand Up @@ -24,7 +24,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"


/*
Expand Down
1 change: 0 additions & 1 deletion src/win/handle.c
Expand Up @@ -24,7 +24,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"


uv_handle_type uv_guess_handle(uv_file file) {
Expand Down
1 change: 1 addition & 0 deletions src/win/internal.h
Expand Up @@ -23,6 +23,7 @@
#define UV_WIN_INTERNAL_H_

#include "uv.h"
#include "../uv-common.h"

#include "tree.h"
#include "winapi.h"
Expand Down
1 change: 0 additions & 1 deletion src/win/loop-watcher.c
Expand Up @@ -23,7 +23,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"


void uv_loop_watcher_endgame(uv_loop_t* loop, uv_handle_t* handle) {
Expand Down
1 change: 0 additions & 1 deletion src/win/pipe.c
Expand Up @@ -26,7 +26,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"


/* A zero-size buffer for use by uv_pipe_read */
Expand Down
1 change: 0 additions & 1 deletion src/win/poll.c
Expand Up @@ -22,7 +22,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"

#include <assert.h>
#include <io.h>
Expand Down
1 change: 0 additions & 1 deletion src/win/process.c
Expand Up @@ -21,7 +21,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"

#include <stdio.h>
#include <assert.h>
Expand Down
1 change: 0 additions & 1 deletion src/win/req.c
Expand Up @@ -23,7 +23,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"


void uv_req_init(uv_loop_t* loop, uv_req_t* req) {
Expand Down
1 change: 0 additions & 1 deletion src/win/stream.c
Expand Up @@ -23,7 +23,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"


void uv_stream_init(uv_loop_t* loop, uv_stream_t* handle) {
Expand Down
1 change: 0 additions & 1 deletion src/win/tcp.c
Expand Up @@ -23,7 +23,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"


/*
Expand Down
1 change: 0 additions & 1 deletion src/win/thread.c
Expand Up @@ -23,7 +23,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"


#define HAVE_SRWLOCK_API() (pTryAcquireSRWLockShared != NULL)
Expand Down
1 change: 0 additions & 1 deletion src/win/threadpool.c
Expand Up @@ -23,7 +23,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"


static void uv_work_req_init(uv_loop_t* loop, uv_work_t* req,
Expand Down
2 changes: 1 addition & 1 deletion src/win/timer.c
Expand Up @@ -25,7 +25,7 @@
#include "uv.h"
#include "internal.h"
#include "tree.h"
#include "../uv-common.h"


#undef NANOSEC
#define NANOSEC 1000000000
Expand Down
1 change: 0 additions & 1 deletion src/win/tty.c
Expand Up @@ -26,7 +26,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"


#define UNICODE_REPLACEMENT_CHARACTER (0xfffd)
Expand Down
1 change: 0 additions & 1 deletion src/win/udp.c
Expand Up @@ -23,7 +23,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"


/*
Expand Down
1 change: 0 additions & 1 deletion src/win/util.c
Expand Up @@ -29,7 +29,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"

#include <iphlpapi.h>
#include <psapi.h>
Expand Down
1 change: 0 additions & 1 deletion src/win/winapi.c
Expand Up @@ -23,7 +23,6 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"


sRtlNtStatusToDosError pRtlNtStatusToDosError;
Expand Down
2 changes: 1 addition & 1 deletion src/win/winsock.c
Expand Up @@ -23,7 +23,7 @@

#include "uv.h"
#include "internal.h"
#include "../uv-common.h"


/* Whether ipv6 is supported */
int uv_allow_ipv6;
Expand Down

0 comments on commit 7cf5154

Please sign in to comment.