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
580 B

  1. #ifndef _TEMP_H
  2. #define _TEMP_H
  3. #include <pshpack8.h> /* Assume 8 byte packing throughout */
  4. #define WAVE_FORMAT_LH_CELP 0x0070
  5. #define WAVE_FORMAT_LH_SB8 0x0071
  6. #define WAVE_FORMAT_LH_SB12 0x0072
  7. #define WAVE_FORMAT_LH_SB16 0x0073
  8. #define ACMDM_LH_DATA_PACKAGING (ACMDM_USER + 1)
  9. // lParam1 when sending ACMDM_LH_DATA_PACKAGING
  10. enum
  11. {
  12. LH_PACKET_DATA_NULL, // uninitialized
  13. LH_PACKET_DATA_FRAMED, // always aligned on frame boundary
  14. LH_PACKET_DATA_ANYTHING // do not assume alignment
  15. };
  16. #include <poppack.h> /* End byte packing */
  17. #endif