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.

54 lines
1.3 KiB

  1. /*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. dialer.h
  5. Abstract:
  6. Header file for dialer
  7. Author:
  8. Dan Knudson (DanKn) 05-Apr-1995
  9. Revision History:
  10. Jeremy Horwitz (t-jereh) 30-May-1995
  11. --*/
  12. #define TAPI_VERSION_1_0 0x00010003
  13. #define TAPI_VERSION_1_4 0x00010004
  14. #define TAPI_VERSION_2_0 0x00020000
  15. #define TAPI_VERSION_2_2 0x00020002
  16. #define TAPI_VERSION_3_0 0x00030000
  17. //#define TAPI_CURRENT_VERSION TAPI_VERSION_2_0
  18. #define TAPI_CURRENT_VERSION TAPI_VERSION_3_0
  19. #include <windows.h>
  20. #include "tapi.h"
  21. #include "resource.h"
  22. #include "dialhelp.h"
  23. #define MENU_CHOICE 1 // for Connect Using dialog...
  24. #define INVALID_LINE 2 // if INVALID_LINE, turn off CANCEL
  25. // button and add extra text...
  26. #define MAXNUMLENGTH 64
  27. #define MAXBUFSIZE 256
  28. #define NSPEEDDIALS 8 // Dialer supports 8 configurable speed dial entries.
  29. #define NLASTDIALED 20 // Dialer keeps track of the 20 last dialed numbers.
  30. #define ERR_NONE 0
  31. #define ERR_NOVOICELINE 1
  32. #define ERR_LINECLOSE 2
  33. #define ERR_NOLINES 3
  34. #define ERR_911WARN 4
  35. #define ERR_NEWDEFAULT 5
  36. #define itoa(x,y,z) _itoa(x,y,z)