NAME
A function of omni::application::startup_handler
omni::application::startup_handler::detach
A function of omni::application::startup_handler
#include <omni/application.hpp>
void omni::application::startup_handler::detach(const omni::callback& start_func)
DESCRIPTION
Detaches an
top
Detaches an
omni::callback that was first attached via the omni::application::startup_handler::attach function. If the callback was never first attached, this function has no effect.
top
CONSIDERATIONS
This function will only have an effect if you have explicitly called one of the
top
This function will only have an effect if you have explicitly called one of the
omni::application::run functions to block the main thread until program completion.
top
NOTES
Calling this function after the run context has entered the main application loop will have no effect on the startup handler since it will have already been called.
top
Calling this function after the run context has entered the main application loop will have no effect on the startup handler since it will have already been called.
top