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

Commit

Permalink
win: add uv_loop_new() and uv_loop_delete() stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Nov 6, 2011
1 parent 7b973eb commit 16d48be
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/win/core.c
Expand Up @@ -105,6 +105,17 @@ uv_loop_t* uv_default_loop(void) {
}


uv_loop_t* uv_loop_new(void) {
assert(0 && "implement me");
return NULL;
}


void uv_loop_delete(uv_loop_t* loop) {
assert(0 && "implement me");
}


void uv_ref(uv_loop_t* loop) {
loop->refs++;
}
Expand Down

0 comments on commit 16d48be

Please sign in to comment.