:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / hal / halx86 / mbr.c
1 /*
2  * COPYRIGHT:       See COPYING in the top level directory
3  * PROJECT:         ReactOS kernel
4  * FILE:            ntoskrnl/hal/x86/mbr.c
5  * PURPOSE:         Functions for reading the master boot record (MBR)
6  * PROGRAMMER:      David Welch (welch@cwcom.net)
7  * UPDATE HISTORY:
8  *                  Created 22/05/98
9  */
10
11 /* INCLUDES *****************************************************************/
12
13 #include <ddk/ntddk.h>
14
15 #include <internal/debug.h>
16
17 /* FUNCTIONS *****************************************************************/
18
19 VOID HalExamineMBR(PDEVICE_OBJECT DeviceObject,
20                    ULONG SectorSize,
21                    ULONG MBRTypeIdentifier,
22                    PVOID Buffer)
23 {
24    UNIMPLEMENTED;
25 }