Leaked source code of windows server 2003
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.

36 lines
534 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. dxapi.h
  5. Abstract:
  6. This file defines the necessary structures, defines, and functions for
  7. the DXAPI class driver.
  8. Author:
  9. Bill Parry (billpa)
  10. Environment:
  11. Kernel mode only
  12. Revision History:
  13. --*/
  14. ULONG
  15. DxApi(
  16. IN ULONG dwFunctionNum,
  17. IN PVOID lpvInBuffer,
  18. IN ULONG cbInBuffer,
  19. IN PVOID lpvOutBuffer,
  20. IN ULONG cbOutBuffer
  21. );
  22. ULONG
  23. DxApiGetVersion(
  24. );