Add support for environment variables in the printer settings.
[wine] / msdos / int12.c
1 /*
2  * BIOS interrupt 12h handler
3  */
4
5 #include "miscemu.h"
6
7 /**********************************************************************
8  *          INT_Int12Handler (WPROCS.118)
9  *
10  * Handler for int 12h (get memory size).
11  */
12 void WINAPI INT_Int12Handler( CONTEXT86 *context )
13 {
14     AX_reg(context) = 640;
15 }