Create a group
#include <screen/screen.h>
int screen_create_group(screen_group_t *pgrp, screen_context_t ctx)
Function Type: Immediate Execution
This function creates a group that windows or pixmaps can join. You can use groups in order to organize your application windows and pixmaps. Use screen_join_window_group() and screen_join_pixmap_group() to join a window or pixmap respectively to a group.
Provide the name of this group (retrieved by calling screen_get_group_property_cv() the SCREEN_PROPERTY_NAME) to windows and pixmaps that need to join it.
Call screen_destroy_group() when you no longer need the group.
0 if successful, or -1 if an error occurred (errno is set; refer to errno.h for more details).