diff options
author | Javier <dev.git@javispedro.com> | 2022-04-20 02:45:41 +0200 |
---|---|---|
committer | Javier <dev.git@javispedro.com> | 2022-04-20 02:45:41 +0200 |
commit | a2aaf8a11f318f4f1dda9c5f15cf2257a3c73f9a (patch) | |
tree | c4f13ff3834cd1057f458a314c6f01769d3aeef8 /int2fwin.h | |
parent | 83b640d102b22e543ff924c443e0d2c9ab33d2ed (diff) | |
download | vbados-a2aaf8a11f318f4f1dda9c5f15cf2257a3c73f9a.tar.gz vbados-a2aaf8a11f318f4f1dda9c5f15cf2257a3c73f9a.zip |
add back support for using ps/2 bios with 3-byte packets
apparently some BIOSes and DOSBox don't support 1-byte streaming mode,
and neither does win386 without a special vkd
Diffstat (limited to 'int2fwin.h')
-rw-r--r-- | int2fwin.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -45,6 +45,8 @@ enum int2f_functions { /** Notification sent when Windows386 is starting up. */ INT2F_NOTIFY_WIN386_STARTUP = 0x1605, + /** Notification sent when Windows386 is terminating. */ + INT2F_NOTIFY_WIN386_SHUTDOWN = 0x1606, /** Notification sent by a VxD that wants to invoke a function in a real-mode driver. */ INT2F_NOTIFY_DEVICE_CALLOUT = 0x1607, |