2004-08-15 Casper S. Hornstrup <chorns@users.sourceforge.net>
[reactos.git] / reactos / ntoskrnl / ke / ipi.c
1 /* $Id: ipi.c,v 1.2 2004/08/15 16:39:05 chorns Exp $
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: ntoskrnl/ke/ipi.c
6 * PURPOSE: IPI Routines (Inter-Processor Interrupts). NT5+
7 * PROGRAMMER: Alex Ionescu (alex@relsoft.net)
8 * UPDATE HISTORY:
9 * Created 11/08/2004
10 */
11
12 /* INCLUDES *****************************************************************/
13
14 #include <ntoskrnl.h>
15 #define NDEBUG
16 #include <internal/debug.h>
17
18 /* FUNCTIONS *****************************************************************/
19
20 /*
21 * @unimplemented
22 */
23 STDCALL
24 BOOLEAN
25 KiIpiServiceRoutine(
26 IN PKTRAP_FRAME TrapFrame,
27 IN PKEXCEPTION_FRAME ExceptionFrame
28 )
29 {
30 UNIMPLEMENTED;
31 return FALSE;
32 }
33
34 /* EOF */