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.

15 lines
448 B

  1. #ifndef _INSTALLSTATE_H_
  2. #define _INSTALLSTATE_H_
  3. // This enum is used to indicate the state of the Cluster Server installation.
  4. // The registry key that indicates the state of the Cluster Server installation
  5. // will be a DWORD representation of one of the following values.
  6. typedef enum
  7. {
  8. eClusterInstallStateUnknown,
  9. eClusterInstallStateFilesCopied,
  10. eClusterInstallStateConfigured
  11. } eClusterInstallState;
  12. #endif // _INSTALLSTATE_H_