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.
 
 
 
 
 
 

27 lines
685 B

//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2001 Microsoft Corporation
//
// Module Name:
// WizardUtils.h
//
// Maintained By:
// David Potter (DavidP) 30-JAN-2001
//
//////////////////////////////////////////////////////////////////////////////
#pragma once
// Options for HrValidateDnsHostname()
enum EValidateDnsHostnameOptions
{
mvdhoALLOW_FULL_NAME = 1
, mvdhoALLOW_ONLY_HOSTNAME_LABEL = 0
};
HRESULT
HrValidateDnsHostname(
HWND hwndParentIn
, LPCWSTR pcwszHostnameIn
, EValidateDnsHostnameOptions emvdhoOptions
);