projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
commctrl.h must include prsht.h.
[wine]
/
msdos
/
int19.c
1
/*
2
* BIOS interrupt 19h handler
3
*/
4
5
#include <stdlib.h>
6
#include "miscemu.h"
7
#include "debug.h"
8
9
10
/**********************************************************************
11
* INT_Int19Handler
12
*
13
* Handler for int 19h (Reboot).
14
*/
15
void WINAPI INT_Int19Handler( CONTEXT *context )
16
{
17
WARN(int19, "Attempted Reboot\n");
18
}