diff options
author | marha <marha@users.sourceforge.net> | 2012-03-23 10:05:55 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-03-23 10:05:55 +0100 |
commit | 0f834b91a4768673833ab4917e87d86c237bb1a6 (patch) | |
tree | 363489504ed4b2d360259b8de4c9e392918e5d02 /xorg-server/hw/dmx/examples/dmxaddscreen.c | |
parent | fc72edebf875378459368c5383d9023730cbca54 (diff) | |
download | vcxsrv-0f834b91a4768673833ab4917e87d86c237bb1a6.tar.gz vcxsrv-0f834b91a4768673833ab4917e87d86c237bb1a6.tar.bz2 vcxsrv-0f834b91a4768673833ab4917e87d86c237bb1a6.zip |
libX11 xserver fontconfig mesa pixman xkbcomp xkeyboard-config git update
23 Mar 2012
Diffstat (limited to 'xorg-server/hw/dmx/examples/dmxaddscreen.c')
-rw-r--r-- | xorg-server/hw/dmx/examples/dmxaddscreen.c | 61 |
1 files changed, 31 insertions, 30 deletions
diff --git a/xorg-server/hw/dmx/examples/dmxaddscreen.c b/xorg-server/hw/dmx/examples/dmxaddscreen.c index 8e60872df..58129faa5 100644 --- a/xorg-server/hw/dmx/examples/dmxaddscreen.c +++ b/xorg-server/hw/dmx/examples/dmxaddscreen.c @@ -37,18 +37,21 @@ #include <X11/Xlib.h> #include <X11/extensions/dmxext.h> -int main(int argc, char **argv) +int +main(int argc, char **argv) { - Display *display = NULL; - int event_base; - int error_base; - int major_version, minor_version, patch_version; - int screenNum; - DMXScreenAttributes attr; - unsigned int mask = 0; + Display *display = NULL; + int event_base; + int error_base; + int major_version, minor_version, patch_version; + int screenNum; + DMXScreenAttributes attr; + unsigned int mask = 0; if (argc != 4 && argc != 14) { - printf("Usage: %s display screenNum displayName [scrnx scrny scrnw scrnh rootx rooty rootw rooth originx originy]\n", argv[0]); + printf + ("Usage: %s display screenNum displayName [scrnx scrny scrnw scrnh rootx rooty rootw rooth originx originy]\n", + argv[0]); return -1; } @@ -59,27 +62,25 @@ int main(int argc, char **argv) screenNum = strtol(argv[2], NULL, 0); if (argc == 14) { - mask |= (DMXScreenWindowXoffset | - DMXScreenWindowYoffset | - DMXScreenWindowWidth | - DMXScreenWindowHeight); - attr.screenWindowXoffset = strtol(argv[4], NULL, 0); - attr.screenWindowYoffset = strtol(argv[5], NULL, 0); - attr.screenWindowWidth = strtol(argv[6], NULL, 0); - attr.screenWindowHeight = strtol(argv[7], NULL, 0); + mask |= (DMXScreenWindowXoffset | + DMXScreenWindowYoffset | + DMXScreenWindowWidth | DMXScreenWindowHeight); + attr.screenWindowXoffset = strtol(argv[4], NULL, 0); + attr.screenWindowYoffset = strtol(argv[5], NULL, 0); + attr.screenWindowWidth = strtol(argv[6], NULL, 0); + attr.screenWindowHeight = strtol(argv[7], NULL, 0); - mask |= (DMXRootWindowXoffset | - DMXRootWindowYoffset | - DMXRootWindowWidth | - DMXRootWindowHeight); - attr.rootWindowXoffset = strtol(argv[8], NULL, 0); - attr.rootWindowYoffset = strtol(argv[9], NULL, 0); - attr.rootWindowWidth = strtol(argv[10], NULL, 0); - attr.rootWindowHeight = strtol(argv[11], NULL, 0); + mask |= (DMXRootWindowXoffset | + DMXRootWindowYoffset | + DMXRootWindowWidth | DMXRootWindowHeight); + attr.rootWindowXoffset = strtol(argv[8], NULL, 0); + attr.rootWindowYoffset = strtol(argv[9], NULL, 0); + attr.rootWindowWidth = strtol(argv[10], NULL, 0); + attr.rootWindowHeight = strtol(argv[11], NULL, 0); - mask |= DMXRootWindowXorigin | DMXRootWindowYorigin; - attr.rootWindowXorigin = strtol(argv[12], NULL, 0); - attr.rootWindowYorigin = strtol(argv[13], NULL, 0); + mask |= DMXRootWindowXorigin | DMXRootWindowYorigin; + attr.rootWindowXorigin = strtol(argv[12], NULL, 0); + attr.rootWindowYorigin = strtol(argv[13], NULL, 0); } if (!DMXQueryExtension(display, &event_base, &error_base)) { @@ -98,8 +99,8 @@ int main(int argc, char **argv) major_version, minor_version, patch_version); if (!DMXAddScreen(display, argv[3], mask, &attr, &screenNum)) - printf("Failed to add %s as screen #%d\n", argv[2], screenNum); - + printf("Failed to add %s as screen #%d\n", argv[2], screenNum); + XCloseDisplay(display); return 0; } |