mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
18 lines
307 B
C
18 lines
307 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include "msdos.h"
|
||
|
#include "wine.h"
|
||
|
|
||
|
int do_int2a(struct sigcontext_struct *context)
|
||
|
{
|
||
|
switch((context->sc_eax >> 8) & 0xff)
|
||
|
{
|
||
|
case 0x00: /* NETWORK INSTALLATION CHECK */
|
||
|
break;
|
||
|
|
||
|
default:
|
||
|
IntBarf(0x2a, context);
|
||
|
};
|
||
|
return 1;
|
||
|
}
|