SCIPincludeDialog

Function SCIPincludeDialog 

Source
pub unsafe extern "C" fn SCIPincludeDialog(
    scip: *mut SCIP,
    dialog: *mut *mut SCIP_DIALOG,
    dialogcopy: Option<unsafe extern "C" fn(scip: *mut SCIP, dialog: *mut SCIP_DIALOG) -> SCIP_RETCODE>,
    dialogexec: Option<unsafe extern "C" fn(scip: *mut SCIP, dialog: *mut SCIP_DIALOG, dialoghdlr: *mut SCIP_DIALOGHDLR, nextdialog: *mut *mut SCIP_DIALOG) -> SCIP_RETCODE>,
    dialogdesc: Option<unsafe extern "C" fn(scip: *mut SCIP, dialog: *mut SCIP_DIALOG) -> SCIP_RETCODE>,
    dialogfree: Option<unsafe extern "C" fn(scip: *mut SCIP, dialog: *mut SCIP_DIALOG) -> SCIP_RETCODE>,
    name: *const c_char,
    desc: *const c_char,
    issubmenu: c_uint,
    dialogdata: *mut SCIP_DIALOGDATA,
) -> SCIP_RETCODE
Expand description

creates and includes dialog

@return \ref SCIP_OKAY is returned if everything worked. Otherwise a suitable error code is passed. See \ref SCIP_Retcode “SCIP_RETCODE” for a complete list of error codes.