screen_wait_post()

Add a wait for a post on a window

Synopsis:

#include <screen/screen.h>
int screen_wait_post(screen_window_t win,
                     int flags)

Arguments:

win
The handle for the window whose post you are waiting on.
flags
The indication of how you want this function to behave. Valid values for this parameter are:

Library:

libscreen

Description:

Function Type: Immediate Execution

This call blocks until there is a post event for the window you are waiting on. This function is typically used in conjunction with screen_share_display_buffers() and/or screen_share_window_buffers().

Returns:

0 if successful, or -1 if an error occurred (errno is set; refer to errno.h for more details).