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.

30 lines
892 B

  1. /*==========================================================================
  2. *
  3. * Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
  4. *
  5. * File: in_def.h
  6. * Content: Definition of common structs for voice instrumentation
  7. *
  8. * History:
  9. * Date By Reason
  10. * ==== == ======
  11. * 02/17/2000 rodtoll Created it
  12. * 04/06/2001 kareemc Added Voice Defense
  13. *
  14. ***************************************************************************/
  15. #ifndef __IN_DEF_H
  16. #define __IN_DEF_H
  17. #define PROF_SECT "DirectPlay8"
  18. struct DVINSTRUMENT_INFO
  19. {
  20. DVINSTRUMENT_INFO( DWORD dwLevel, DWORD dwDefaultLevel, const char *szProfileName ): m_dwLevel(dwLevel), m_dwDefaultLevel(dwDefaultLevel), m_szProfileName(szProfileName) {};
  21. DWORD m_dwLevel;
  22. DWORD m_dwDefaultLevel;
  23. const char *m_szProfileName;
  24. };
  25. typedef DVINSTRUMENT_INFO *PDVINSTRUMENT_INFO;
  26. #endif