implemented some stubs needed by ClamWin
[reactos.git] / reactos / hal / halx86 / generic / ipi.c
1 /* $Id$
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: hal/halx86/generic/ipi.c
6 * PURPOSE: Miscellaneous hardware functions
7 * PROGRAMMER: Eric Kohl (ekohl@rz-online.de)
8 */
9
10 /* INCLUDES *****************************************************************/
11
12 #include <hal.h>
13 #define NDEBUG
14 #include <debug.h>
15
16 /* FUNCTIONS ****************************************************************/
17
18 VOID STDCALL
19 HalRequestIpi(ULONG ProcessorNo)
20 {
21 DPRINT("HalRequestIpi(ProcessorNo %d)\n", ProcessorNo);
22 }
23
24 /* EOF */