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.

16 lines
624 B

  1. #ifndef _T30EXT_H_
  2. #define _T30EXT_H_
  3. #define GUID_T30_EXTENSION_DATA TEXT("{27692245-497C-47c3-9607-CD388AB2BE0A}")
  4. //
  5. // Unicode version required for T30 FSP itself which is compiled in ANSI
  6. //
  7. #define GUID_T30_EXTENSION_DATA_W L"{27692245-497C-47c3-9607-CD388AB2BE0A}"
  8. typedef struct T30_EXTENSION_DATA_tag {
  9. BOOL bAdaptiveAnsweringEnabled; // TRUE if adaptive answering should be enabled
  10. // for this device.
  11. } T30_EXTENSION_DATA;
  12. typedef T30_EXTENSION_DATA * LPT30_EXTENSION_DATA;
  13. typedef const T30_EXTENSION_DATA * LPCT30_EXTENSION_DATA;
  14. #endif