mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
1734f29721
These libraries are used only inside tcpip.sys driver so move them close to it.
29 lines
662 B
C
29 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*/
|