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.

26 lines
810 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. ***************************************************************************/
  13. #ifndef __IN_DEF_H
  14. #define __IN_DEF_H
  15. struct DVINSTRUMENT_INFO
  16. {
  17. DVINSTRUMENT_INFO( DWORD dwLevel, DWORD dwDefaultLevel, const char *szProfileName ): m_dwLevel(dwLevel), m_dwDefaultLevel(dwDefaultLevel), m_szProfileName(szProfileName) {};
  18. DWORD m_dwLevel;
  19. DWORD m_dwDefaultLevel;
  20. const char *m_szProfileName;
  21. };
  22. typedef DVINSTRUMENT_INFO *PDVINSTRUMENT_INFO;
  23. #endif