[IP][LWIP][TCPIP] Move ip and lwip libraries to drivers/network/tcpip

These libraries are used only inside tcpip.sys driver so move them close
to it.
This commit is contained in:
Victor Perevertkin 2023-01-30 23:08:38 +03:00
parent 6c2df5a199
commit 1734f29721
186 changed files with 29 additions and 37 deletions

View file

@ -1,29 +0,0 @@
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* FILE: include/reactos/chew/chew.h
* PURPOSE: Common Highlevel Executive Worker
*
* PROGRAMMERS: arty (ayerkes@speakeasy.net)
*/
#ifndef _REACTOS_CHEW_H
#define _REACTOS_CHEW_H
/**
* Initialize CHEW, given a device object (since IoAllocateWorkItem relies on
* it).
*/
VOID ChewInit(PDEVICE_OBJECT DeviceObject);
/**
* Shutdown CHEW, waits for remaining work items.
*/
VOID ChewShutdown(VOID);
/**
* Creates and queues a work item.
*/
BOOLEAN ChewCreate(VOID (*Worker)(PVOID), PVOID WorkerContext);
#endif/*_REACTOS_CHEW_H*/