Added ObGetObjectHandleCount().
[reactos.git] / reactos / ntoskrnl / io / xhaldisp.c
1 /* $Id: xhaldisp.c,v 1.4 2001/06/08 15:11:04 ekohl Exp $
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: ntoskrnl/io/xhaldisp.c
6 * PURPOSE: Hal dispatch tables
7 * PROGRAMMER: Eric Kohl (ekohl@rz-online.de)
8 * UPDATE HISTORY:
9 * Created 19/06/2000
10 */
11
12 /* INCLUDES *****************************************************************/
13
14 #include <ddk/ntddk.h>
15 #include <internal/xhal.h>
16
17 /* DATA **********************************************************************/
18
19
20 HAL_DISPATCH EXPORTED HalDispatchTable =
21 {
22 HAL_DISPATCH_VERSION,
23 NULL, // HalQuerySystemInformation
24 NULL, // HalSetSystemInformation
25 NULL, // HalQueryBusSlots
26 NULL, // HalDeviceControl
27 xHalExamineMBR,
28 xHalIoAssignDriveLetters,
29 xHalIoReadPartitionTable,
30 xHalIoSetPartitionInformation,
31 xHalIoWritePartitionTable,
32 NULL, // HalReferenceHandlerForBus
33 NULL, // HalReferenceBusHandler
34 NULL // HalDereferenceBusHandler
35 };
36
37
38 HAL_PRIVATE_DISPATCH EXPORTED HalPrivateDispatchTable =
39 {
40 HAL_PRIVATE_DISPATCH_VERSION
41 // HalHandlerForBus
42 // HalHandlerForConfigSpace
43 // HalCompleteDeviceControl
44 // HalRegisterBusHandler
45 // any more??
46 };
47
48 /* EOF */
49