ZONEATTRIBUTESZONEATTRIBUTES*
*Contents  *Index  *Topic Contents
*Previous Topic: Structures
*Next Topic: Enumerated Types

ZONEATTRIBUTES

typedef struct _ZONEATTRIBUTES {
    ULONG cbSize;
    WCHAR szDisplayName[MAX_PATH];
    WCHAR szDescription[MAX_ZONE_DESCRIPTION];
    WCHAR szIconPath[MAX_PATH];
    DWORD dwTemplateMinLevel;
    DWORD dwTemplateRecommended;
    DWORD dwTemplateCurrentLevel;
    DWORD dwFlags;
} ZONEATTRIBUTES, *LPZONEATTRIBUTES;

Contains the attributes of a particular zone.

cbSize
Unsigned long integer value that contains the size of the structure.
szDisplayName
Array of wide characters that contains the display name of the zone.
szDescription
Array of wide characters that contains the description of the zone.
szIconPath
Array of wide characters that contains the path to the icon associated with this zone.
dwTemplateMinLevel
Double-word value that contains the minimum template level.
dwTemplateRecommended
Double-word value that contains the recommended template level.
dwTemplateCurrentLevel
Double-word value that contains the current template level.
dwFlags
Double-word value that contains the flags associated with the specified zone. Can be one of the ZAFLAGS values.

Up Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.