Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

visualofccc(3x11) [redhat man page]

DisplayOfCCC(3X11)						  XLIB FUNCTIONS						DisplayOfCCC(3X11)

NAME
DisplayOfCCC, VisualOfCCC, ScreenNumberOfCCC, ScreenWhitePointOfCCC, ClientWhitePointOfCCC - Color Conversion Context macros SYNTAX
DisplayOfCCC(ccc) XcmsCCC ccc; VisualOfCCC(ccc) XcmsCCC ccc; ScreenNumberOfCCC(ccc) XcmsCCC ccc; ScreenWhitePointOfCCC(ccc) XcmsCCC ccc; ClientWhitePointOfCCC(ccc) XcmsCCC ccc; ARGUMENTS
ccc Specifies the CCC. DESCRIPTION
The DisplayOfCCC macro returns the display associated with the specified CCC. The VisualOfCCC macro returns the visual associated with the specified CCC. The ScreenNumberOfCCC macro returns the number of the screen associated with the specified CCC. The ScreenWhitePointOfCCC macro returns the screen white point of the screen associated with the specified CCC. The ClientWhitePointOfCC macro returns the client white point of the screen associated with the specified CCC. SEE ALSO
XcmsCCCOfColormap(3X11), XcmsConvertColors(3X11), XcmsCreateCCC(3X11), XcmsDefaultCCC(3X11), XcmsSetWhitePoint(3X11) Xlib - C Language X Interface X Version 11 Release 6.6 DisplayOfCCC(3X11)

Check Out this Related Man Page

DisplayOfCCC(3X11)						  XLIB FUNCTIONS						DisplayOfCCC(3X11)

NAME
DisplayOfCCC, VisualOfCCC, ScreenNumberOfCCC, ScreenWhitePointOfCCC, ClientWhitePointOfCCC - Color Conversion Context macros SYNTAX
DisplayOfCCC(ccc) XcmsCCC ccc; VisualOfCCC(ccc) XcmsCCC ccc; ScreenNumberOfCCC(ccc) XcmsCCC ccc; ScreenWhitePointOfCCC(ccc) XcmsCCC ccc; ClientWhitePointOfCCC(ccc) XcmsCCC ccc; ARGUMENTS
ccc Specifies the CCC. DESCRIPTION
The DisplayOfCCC macro returns the display associated with the specified CCC. The VisualOfCCC macro returns the visual associated with the specified CCC. The ScreenNumberOfCCC macro returns the number of the screen associated with the specified CCC. The ScreenWhitePointOfCCC macro returns the screen white point of the screen associated with the specified CCC. The ClientWhitePointOfCC macro returns the client white point of the screen associated with the specified CCC. SEE ALSO
XcmsCCCOfColormap(3X11), XcmsConvertColors(3X11), XcmsCreateCCC(3X11), XcmsDefaultCCC(3X11), XcmsSetWhitePoint(3X11) Xlib - C Language X Interface X Version 11 Release 6.6 DisplayOfCCC(3X11)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

parsing with multible delimiters

I have data that looks like this aaa!bbb!ccc/ddd/eee It is not fixed format. I need to parse ddd into a var in order to decide if I want to process that row. If I do I need to put ccc and bbb into vars to process it. I need to do this during a while loop one record at a time. Any... (11 Replies)
Discussion started by: gillbates
11 Replies

2. Shell Programming and Scripting

need to get the last word in comma sep line

I have a file with aaa,bbb,ccc,dddd,eee,xyz aaa,bbb,ccc,dddd,eee,xyz,12345,rty aaa,bbb,ccc,dddd,eee,xyz,12345,rty,tsrt 1. line columns are not fixed 2. all words are seperated by comma what i want is always the string after last comma. regards, Senthil... (9 Replies)
Discussion started by: senthilk615
9 Replies

3. Debian

cannot send any mails using mailx

hi howto configure mailx ? kind regards ccc (11 Replies)
Discussion started by: ccc
11 Replies

4. Shell Programming and Scripting

Moving next 2 lines contents to previous lines

My input file is aaa bbb ccc a1a b1b c1c a2a b2b c2c I want the output file to look like that: aaa,bbb,ccc a1a,b1b,c1c a2a,b2b,c2c How do I achieve this ? (8 Replies)
Discussion started by: Amruta Pitkar
8 Replies

5. Shell Programming and Scripting

comm not working for this case. HELP!

I have two sorted files. newfile has records like: aaa|bbb|ccc||| ddd||eee|fff|| oldfile has records like: aaa|bbb|ccc| ggg||hhh|fff The output should like: ddd||eee|fff|| I use comm but it's not working for this case. comm -2 -3 newfile oldfile > difffile The difffile is the... (6 Replies)
Discussion started by: sslr
6 Replies

6. Shell Programming and Scripting

Join same line from multiple file

Hi, Can we use shell script to combine multiple file ? For example we have 3 file 1.txt 2.txt 3.txt and the result should be : (6 Replies)
Discussion started by: justbow
6 Replies

7. UNIX for Dummies Questions & Answers

Adding lines and columns to a file

Hi everybody, I've got two simples file1 like: aaa aaa aaa bbb bbb bbb ccc ccc ccc and file2 like: 111 111 111 222 222 222 333 333 333 I need to: 1) add a line say "new line" as the first line of the file 2)add a column from file2 (say column3) to file1; the new column should... (14 Replies)
Discussion started by: zajtat
14 Replies

8. Shell Programming and Scripting

SED command problem

hi frnds, my data file goes like this sessioj123 ffl sfootxt sgsggs TARG ROW aaa :123 bbb : 145 ccc: 669 vvv: 777 ) my output should be 123,145,669,777. we can identify the data block using the keywor TARG ROW and ). Plz help how to implement using SED commands in shell... (8 Replies)
Discussion started by: Gopal_Engg
8 Replies

9. Shell Programming and Scripting

getting variables from another script

I have 2 scripts.The first script greps something and prints it say a.sh #!/bin/sh ccc="grep something and cut something" echo $ccc When you run this it gives a value say "100" I have b.sh and I have #!/bin/sh status=`/home/a.sh` status_code=$? echo status_code When I run... (7 Replies)
Discussion started by: gubbu
7 Replies

10. UNIX for Dummies Questions & Answers

Help with Data Sorting Command

Hi, I have a problem on data sorting, example my file as below: 123 123/789 aaa bbb ccc ddd (adf) 112 112/123 aaa bbb ccc (ade) 102 1a3/7g9 (adf)03 110 12b/129 aaa bbb ccc ddd fff(a8f)03 117 42f/8c9 aaa bbb ccc ddd (adf) 142 120/tyu fff... (7 Replies)
Discussion started by: 793589
7 Replies

11. Shell Programming and Scripting

Replace a string in quote to uppercase

Hi, I need to find all strings in single quote and change the case of the string to UPPER. Example: Input: xyz abc ccc 'zxxx7U' dfsdf sdfdd aaa 'oR77' and 'or88' Output: xyz abc ccc 'ZXXX7U' dfsdf sdfdd aaa 'OR77' and 'OR88' Appreciate your help!! Thanks Selva (6 Replies)
Discussion started by: selkum
6 Replies

12. Shell Programming and Scripting

Search and Replace

Hi!!! I have following xml file with 3 sections. aaa1bbb-ccc default aaa1bbbdd default 0 11 23 * * aaa2bbb-ccc default aaa2bbbdd default 0 11 23 * * aaa3bbb-ccc default aaa3bbbdd default 0 15 23 * * (15 Replies)
Discussion started by: tdev457
15 Replies

13. Shell Programming and Scripting

Row to column

can anybody help me.. how to transfer data from row become column my file is below aaa bbb ccc ddd and become aaa bbb ccc ddd (6 Replies)
Discussion started by: zulabc
6 Replies

14. Shell Programming and Scripting

problem handling lov in FOR loop

Hi all, i am trying to process a list of values in FILE like this: aaa:bbb ccc:ddd eee:fff With the following logic: for INFO in FILE do export F1=`cut -f1,3,5,7 -d":" < FILE` export F2=`cut -f2,3,5,7 -d":" < FILE` ssh $F1 bash <<EOF echo $F1 echo $F2 date (10 Replies)
Discussion started by: jonnyd
10 Replies

15. UNIX for Dummies Questions & Answers

Split a file into parts only if the first field is different

Hi, I have a file like this: aaa 123 aaa 223 aaa 225 bbb 332 bbb 423 bbb 6755 bbb 324 ccc 112 ccc 234 ccc 897 Which I need to split into several files, something like split -l 3 but the way that the lines with the same names would only go into one file: (7 Replies)
Discussion started by: coppuca
7 Replies