blob: f310dd6c2482056f819fc139dc605e694cb6befc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*** dmfon.h - DMF (Distribution Media Format -- 1.7M 3.5") support
*
* Microsoft Confidential
* Copyright (C) Microsoft Corporation 1993-1994
* All Rights Reserved.
*
* Author:
* Benjamin W. Slivka
*
* History:
* 13-May-1994 bens Initial version
*/
/*** EnableDMFSupport - Enable DMF support on pre-Chicago DOS systems
*
* Entry:
* None:
*
* Exit:
* INT 13h vector hooked with code to ensure DOS and BIOS read
* DMF disks correctly.
* PSP:savedINT22 hooked so that we can *unhook* our INT13 hook
* when the calling program exits.
*/
void far EnableDMFSupport(void);
|