◄Up► ◄Next► ◄Previous► ──────────────────────────────────────────────────────────────────────────── #define INCL_WINFRAMEMGR typedef struct _FRAMECDATA { /* fcdata */ USHORT cb; ULONG flCreateFlags; HMODULE hmodResources; USHORT idResources; } FRAMECDATA; typedef FRAMECDATA FAR *PFRAMECDATA; The FRAMECDATA structure contains information about the frame controls that are created by using the WinCreateFrameControls function. Field Description ──────────────────────────────────────────────────────────────────────────── cb Specifies the size of the structure (in bytes). Programs written in the C language should use the sizeof operator to set this field. flCreateFlags Specifies the frame controls to be created. hmodResources Identifies the resource file loaded if the FCF_MENU option is specified in the flCreateFlags field. idResources Identifies the menu loaded from the resource file identified by hmodResources if the FCF_MENU option is specified in the flCreateFlags field. See Also WinCreateFrameControls ♦