Moved scrollbar tracking code to scroll.c.
[wine] / msdos / int19.c
1 /*
2  * BIOS interrupt 19h handler
3  */
4
5 #include <stdlib.h>
6 #include "miscemu.h"
7 #include "debugtools.h"
8
9 DEFAULT_DEBUG_CHANNEL(int19);
10
11
12 /**********************************************************************
13  *          INT_Int19Handler
14  *
15  * Handler for int 19h (Reboot).
16  */
17 void WINAPI INT_Int19Handler( CONTEXT86 *context )
18 {
19     WARN("Attempted Reboot\n");
20 }