Source code of Windows XP (NT5)
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.

29 lines
753 B

  1. //+----------------------------------------------------------------------------
  2. //
  3. // File: conact.h
  4. //
  5. // Module: CMAK.EXE and CMDIAL32.DLL
  6. //
  7. // Synopsis: Header file to describe the custom action execution states.
  8. //
  9. // Copyright (c) 2000 Microsoft Corporation
  10. //
  11. // Author: quintinb Created 02/26/00
  12. //
  13. //+----------------------------------------------------------------------------
  14. //
  15. // Enum to mask ConData.dwFlags
  16. //
  17. const int c_iNumCustomActionExecutionStates = 5;
  18. enum CustomActionExecutionStates {
  19. ALL_CONNECTIONS = 0x0,
  20. DIRECT_ONLY = 0x1,
  21. ALL_DIALUP = 0x2,
  22. DIALUP_ONLY = 0x4,
  23. ALL_TUNNEL = 0x8
  24. };
  25. const DWORD c_dwLargestExecutionState = ALL_TUNNEL;
  26. const UINT NONINTERACTIVE = 0x10;