次の方法で共有


FW_DAYS (Windows CE 5.0)

Send Feedback

This enumeration defines values for 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

IP Firewall Enumerations

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.