msos2.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
FRAMECDATA (1.2)
                                                      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