pjsua_vid_win_set_show method

int pjsua_vid_win_set_show(
  1. int wid,
  2. int show1
)

Show or hide window. This operation is not valid for native windows (pjsua_vid_win_info.is_native=PJ_TRUE), on which native windowing API must be used instead.

@param wid The video window ID. @param show Set to PJ_TRUE to show the window, PJ_FALSE to hide the window.

@return PJ_SUCCESS on success, or the appropriate error code.

Implementation

int pjsua_vid_win_set_show(
  int wid,
  int show1,
) {
  return _pjsua_vid_win_set_show(
    wid,
    show1,
  );
}