Last change
on this file since 47886 was 47886, checked in by vboxsync, 11 years ago |
export lwip-new to OSE
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
939 bytes
|
Line | |
---|
1 | /* $Id: VBoxLwipCore.h 47886 2013-08-20 10:42:22Z vboxsync $ */
|
---|
2 |
|
---|
3 | /** @file
|
---|
4 | * VBox Lwip Core Initiatetor/Finilizer.
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2012 Oracle Corporation
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License (GPL) as published by the Free Software
|
---|
14 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | */
|
---|
18 | #ifndef __VBOXLWIPCORE_H__
|
---|
19 | #define __VBOXLWIPCORE_H__
|
---|
20 |
|
---|
21 |
|
---|
22 | typedef DECLCALLBACK(void) FNRT1(void *);
|
---|
23 | typedef FNRT1 *PFNRT1;
|
---|
24 | /**
|
---|
25 | * initiliazes LWIP core, and do callback on tcp/ip thread
|
---|
26 | */
|
---|
27 | int vboxLwipCoreInitialize(PFNRT1 pfnCallback, void * pfnCallbackArg);
|
---|
28 | void vboxLwipCoreFinalize(PFNRT1 pfnCallback, void * pfnCallbackArg);
|
---|
29 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.