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

Commit

Permalink
Browse files Browse the repository at this point in the history
Windows: make uv-common.h independent from internal.h
  • Loading branch information
piscisaureus committed May 15, 2012
1 parent 0b7868b commit dd4878c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/uv-common.h
Expand Up @@ -47,6 +47,9 @@ enum {
UV__ACTIVE = 0x4000,
UV__REF = 0x8000
};
#else
# define UV__REF 0x00000020
# define UV__ACTIVE 0x00000040
#endif

struct uv_ares_task_s {
Expand Down
1 change: 1 addition & 0 deletions src/win/internal.h
Expand Up @@ -39,6 +39,7 @@
#define UV_HANDLE_ENDGAME_QUEUED 0x00000004
#define UV_HANDLE_ACTIVE 0x00000010

/* Keep in sync with uv-common.h: */
#define UV__REF 0x00000020
#define UV__ACTIVE 0x00000040
/* reserved: #define UV_HANDLE_INTERNAL 0x00000080 */
Expand Down

0 comments on commit dd4878c

Please sign in to comment.