logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

DMXAddScreen - attach a new back-end screen

Description

DMXAddScreen() attaches a back-end screen to the Xdmx(1) server, in place of the previously detached back-end server specified by screen. displayName is the name of the new back-end display, mask specifies the field in attr that are active, and screen returns the new Xdmx(1) screen number for the attached screen. The information stored in maskandattr is identical to that used by the DMXChangeScreensAttributes(3) and DMXGetScreenAttributes(3) functions.

Name

DMXAddScreen - attach a new back-end screen

Notes

Attributes that are not specified will default to 0. This may lead to unintended results. Unlike other functions in the DMX(3) API, this function uses screen for both input and output.

Return Value

DMXAddScreen() will return True if the screen was successfully attached, and False otherwise. False will be returned if the -addremovescreens command line option was not specified on the Xdmx(1) command line, the input value of screen is out of range, screen is not currently detached, displayName cannot be opened, has unexpected visuals, or has characteristics that do not match the previously detached screen. DMXAddScreen() can generate BadLength, BadAlloc, and BadValue errors.

See Also

DMXRemoveScreen(3), DMXChangeScreensAttributes(3), DMXGetScreenAttributes(3), DMX(3), Xdmx(1) X Version 11 libdmx 1.1.4 DMXAddScreen(3)

Synopsis

#include<X11/extensions/dmxext.h>BoolDMXAddScreen(Display*dpy,constchar*displayName,unsignedintmask,DMXScreenAttributes*attr,int*screen);

See Also