diff options
author | Anthony Pesch <inolen@gmail.com> | 2013-09-01 02:22:21 -0700 |
---|---|---|
committer | Anthony Pesch <inolen@gmail.com> | 2013-09-01 02:22:21 -0700 |
commit | 567e103d28010aac619c0a387e3422734d0c8653 (patch) | |
tree | d5a02fbab5e11481a19884215d91799f8fdce2d1 /src/library.js | |
parent | 02cfae8fdda8f6916ae12c6cda947a7aa2084014 (diff) |
misc in.h and SDL joystick stubs
Diffstat (limited to 'src/library.js')
-rw-r--r-- | src/library.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/library.js b/src/library.js index 9d0c65d5..f953bc33 100644 --- a/src/library.js +++ b/src/library.js @@ -7193,7 +7193,25 @@ LibraryManager.library = { } }, + // ========================================================================== + // net/if.h + // ========================================================================== + + if_nametoindex: function(a) { + return 0; + }, + if_indextoname: function(a, b) { + return 0; + }, + if_nameindex: function() { + return 0; + }, + if_freenameindex: function(a) { + }, + + // ========================================================================== // netinet/in.h + // ========================================================================== _in6addr_any: 'allocate([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], "i8", ALLOC_STATIC)', |