Share via


NMDAYSTATE (Compact 2013)

3/28/2014

This structure carries information required to process the MCN_GETDAYSTATE message. All members of this structure are for input, except prgDayState, which the user must set when processing MCN_GETDAYSTATE.

Syntax

typedef struct tagNMDAYSTATE {
  NMHDR nmhdr;
  SYSTEMTIME stStart;
  int cDayState;
  LPMONTHDAYSTATE prgDayState; 
} NMDAYSTATE, FAR* LPNMDAYSTATE;

Members

  • nmhdr
    NMHDR structure that contains information about this message.
  • stStart
    SYSTEMTIME structure that contains the starting date.
  • cDayState
    Value that specifies the total number of elements that must be in the array at prgDayState.
  • prgDayState
    Pointer to an array of MONTHDAYSTATE values. This must be set to point to an array that contains as many elements as specified in cDayState. The first element in the array corresponds to the date in stStart.

Requirements

Header

commctrl.h

See Also

Reference

Month Calendar Controls Structures
NMHDR

Other Resources

SYSTEMTIME