int wb_main_loop (void)
Enters the Windows main loop. This function must be called if the application has a window and the processing of the messages should start. Usually the call to wb_main_loop() must be the last executable statement of the PHP script. This occurs because all code after the call of the function wb_main_loop() gets executed only if there exists a higher return scope (be it global or from a function/method). The return value is used for debugging purposes only and may be ignored.
Known issues:
// A Windows application with only three lines
include("../include/winbinder.php"); // Include WinBinder library
wb_create_window(NULL, PopupWindow, "Hello world!", 480, 320); // Create application window
wb_main_loop(); // Enter message loop
wb_main_loop
wb_set_handler
Main loop, the