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

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. dxmapper.h
  5. Abstract:
  6. This file defines the necessary structures, defines, and functions for
  7. the DXMAP class driver.
  8. Author:
  9. Bill Parry (billpa)
  10. Environment:
  11. Kernel mode only
  12. Revision History:
  13. --*/
  14. #define DEBUG_BREAKPOINT() DbgBreakPoint()
  15. #define DXVERSION 4
  16. NTSTATUS
  17. DriverEntry(
  18. IN PDRIVER_OBJECT DriverObject,
  19. IN PUNICODE_STRING RegistryPath
  20. );
  21. ULONG
  22. DXCheckDSoundVersion(
  23. );
  24. ULONG
  25. DXIssueIoctl(IN ULONG dwFunctionNum,
  26. IN PVOID lpvInBuffer,
  27. IN ULONG cbInBuffer,
  28. IN PVOID lpvOutBuffer,
  29. IN ULONG cbOutBuffer
  30. );