Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

46 lines
684 B

/*++
Copyright (c) 1996 Microsoft Corporation
Module Name:
dxmapper.h
Abstract:
This file defines the necessary structures, defines, and functions for
the DXMAP class driver.
Author:
Bill Parry (billpa)
Environment:
Kernel mode only
Revision History:
--*/
#define DEBUG_BREAKPOINT() DbgBreakPoint()
#define DXVERSION 4
NTSTATUS
DriverEntry(
IN PDRIVER_OBJECT DriverObject,
IN PUNICODE_STRING RegistryPath
);
ULONG
DXCheckDSoundVersion(
);
ULONG
DXIssueIoctl(IN ULONG dwFunctionNum,
IN PVOID lpvInBuffer,
IN ULONG cbInBuffer,
IN PVOID lpvOutBuffer,
IN ULONG cbOutBuffer
);