reactos/sdk/lib/drivers/hidparser/hidp.h
Hervé Poussineau 2978d4b61b [HIDPARSE/HIDPARSER] Move HidP_* functions from hidparse.sys to hidparser library
Interface between both is not anymore the HidParser_* functions, but
the HidP_* functions and the AllocFunction/FreeFunction/DebugFunctions/
ZeroFunction/CopyFunction.
2019-05-02 20:06:47 +02:00

7 lines
236 B
C

PVOID NTAPI AllocFunction(ULONG Size);
VOID NTAPI FreeFunction(PVOID Item);
VOID NTAPI ZeroFunction(PVOID Item, ULONG Size);
VOID NTAPI CopyFunction(PVOID Target, PVOID Source, ULONG Size);
VOID __cdecl DebugFunction(LPCSTR Src, ...);