reactos/drivers/network/tcpip/include/chew.h
Victor Perevertkin 1734f29721 [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.
2023-02-01 02:31:14 +03:00

30 lines
662 B
C

/*
* 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*/