MB_ReadMultiBootParentBssDesc


C Specification

#include <nitro/mb.h>

void MB_ReadMultiBootParentBssDesc(
    WMBssDesc   *p_desc, 
    u16         parent_max_size, 
    u16         child_max_size, 
    BOOL        ks_flag, 
    BOOL        cs_flag);

Description

If called by a multiboot child, this function stores information for connection to specified memory based on parent information retrieved with the MB_GetMultiBootParentBssDesc function. The WMBssDesc structure stored by this function can be handled the same as parent information retrieved with the WM_StartScan function, and can be provided in an argument of the WM_StartConnect function.

Arguments

p_desc pointer to WMBssDesc structure storing parent information
parent_max_size maximum send size of MP parent that the connected parent sets by the WM_SetParentParameter function.
This size must be stipulated and specified with the application beforehand.
child_max_size maximum send size of MP child that the connected parent sets by the WM_SetParentParameter function.
This size must be stipulated and specified with the application beforehand.
ks_flag key sharing setting flag that the connected parent sets by the WM_SetParentParameter function.
This setting must be stipulated and specified with the application beforehand.
cs_flag continuous send setting flag that the connected parent sets by the WM_SetParentParameter function.
This setting must be stipulated and specified with the application beforehand.

Return Values

See Also

WM_SetParentParameter, WM_StartScan, WM_StartConnect, MB_GetMultiBootParentBssDesc

Revision History

10/05/2004 Initial version