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.

36 lines
1.2 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // File: state.h
  4. //
  5. // Module: CMDIAL32.DLL
  6. //
  7. // Synopsis: Dialing states definition
  8. //
  9. // Copyright (c) 1998 Microsoft Corporation
  10. //
  11. // Author: quintinb Created Header 08/16/99
  12. //
  13. //+----------------------------------------------------------------------------
  14. #ifndef __STATE_H_DEFINED__
  15. #define __STATE_H_DEFINED__
  16. #ifndef _PROGSTATE_ENUMERATION
  17. #define _PROGSTATE_ENUMERATION
  18. typedef enum _ProgState {
  19. PS_Interactive=0, // interactive with user
  20. PS_Dialing, // dialing primary number
  21. PS_RedialFrame, // Redialing, for future flash frame# only, not a state
  22. PS_Pausing, // waiting to re-dial
  23. PS_Authenticating, // authenticating user-password
  24. PS_Online, // connected/on-line
  25. PS_TunnelDialing, // start to dial up tunnel server
  26. PS_TunnelAuthenticating, // start authentication for tunnel connection
  27. PS_TunnelOnline, // we're now online for tunneling
  28. PS_Error, // Error while attempting to connect
  29. PS_Last
  30. } ProgState;
  31. const int NUMSTATES = PS_Last;
  32. #endif // _PROGSTATE_ENUMERATION
  33. #endif // __STATE_H_DEFINED__