FW_DAYS
This enumeration contains values that specify days of the week, weekdays, or weekends. The wDayOfWeek member of FW_RULE uses a combination of these values.
typedef enum _FW_DAYS {
FWD_SUNDAY = 0x01,
FWD_MONDAY = 0x02,
FWD_TUESDAY = 0x04,
FWD_WEDNESDAY = 0x08,
FWD_THURSDAY = 0x10,
FWD_FRIDAY = 0x20,
FWD_SATURDAY = 0x40,
FWD_WEEKDAY = 0x3E,
FWD_WEEKEND = 0x41,
} FW_DAYS;
Elements
- FWD_SUNDAY
Specifies Sundays. - FWD_MONDAY
Specifies Mondays. - FWD_TUESDAY
Specifies Tuesdays. - FWD_WEDNESDAY
Specifies Wednesdays. - FWD_THURSDAY
Specifies Thursdays. - FWD_FRIDAY
Specifies Fridays. - FWD_SATURDAY
Specifies Saturdays. - FWD_WEEKDAY
Specifies Weekdays. - FWD_WEEKEND
Specifies Weekends.
Requirements
OS Versions: Windows CE .NET 4.2 and later.
Header: Fwapi.h.
See Also
Last updated on Tuesday, May 18, 2004
© 1992-2003 Microsoft Corporation. All rights reserved.