xref: /reactos/hal/halarm/generic/misc.c (revision 84ccccab)
1 /*
2  * PROJECT:         ReactOS Hardware Abstraction Layer (HAL)
3  * LICENSE:         BSD - See COPYING.ARM in the top level directory
4  * FILE:            hal/halarm/generic/misc.c
5  * PURPOSE:         Misc functions to move
6  * PROGRAMMERS:     ReactOS Portable Systems Group
7  */
8 
9 /* INCLUDES *******************************************************************/
10 
11 #include <hal.h>
12 #define NDEBUG
13 #include <debug.h>
14 
15 /* GLOBALS  *******************************************************************/
16 
17 /* FUNCTIONS ******************************************************************/
18 
19 /*
20  * @implemented
21  */
22 UCHAR
23 FASTCALL
24 HalSystemVectorDispatchEntry(IN ULONG Vector,
25                              OUT PKINTERRUPT_ROUTINE **FlatDispatch,
26                              OUT PKINTERRUPT_ROUTINE *NoConnection)
27 {
28     /* Not implemented */
29     UNIMPLEMENTED;
30     while (TRUE);
31     return 0;
32 }
33 
34 /*
35  * @implemented
36  */
37 VOID
38 NTAPI
39 KeFlushWriteBuffer(VOID)
40 {
41     /* Not implemented */
42     UNIMPLEMENTED;
43     while (TRUE);
44     return;
45 }
46 
47 /* EOF */
48