Call for a New OWASP Thailand Chapter Leader


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Complex Event Processing RSS News Call for a New OWASP Thailand Chapter Leader
# 1  
Old 01-16-2009
Call for a New OWASP Thailand Chapter Leader

Tim Bass
01-15-2009 09:50 PM


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. What is on Your Mind?

Guido van Rossum resigns as Python Leader...

Yup it's true: Transfer of power This will put Python development in disarray. Which reminded me of this thread I posted some time ago: https://www.unix.com/what-is-on-your-mind-/249767-has-python-lost-plot.html MadeInGermany's post 3 is probably one of the reasons but not quoted.... (1 Reply)
Discussion started by: wisecracker
1 Replies

2. UNIX for Dummies Questions & Answers

Generating key values for leader records

All, I have a file with text as shown below. I want the o/p file with generated values in the first column as shown in the o/p file. Pls note that the size of my file is 6 GB. How do i do this ? Input file 999999abcdef 999999ghijkl 999999mnopq 777777rosesarered 777777skyisblue Output... (1 Reply)
Discussion started by: ajfaq
1 Replies

3. Programming

Why process leader can not call setsid()

Why process leader can not call setsid() (2 Replies)
Discussion started by: chenhao_no1
2 Replies
Login or Register to Ask a Question
XSetRGBColormaps()														XSetRGBColormaps()

Name
  XSetRGBColormaps - set an XStandardColormap structure.

Synopsis
  void XSetRGBColormaps(display, w, std_colormap, count, property)
	Display *display;
	Window w;
	XStandardColormap *std_colormap;
	int count;
	Atom property;

Arguments
  display   Specifies a connection to an X server; returned from XOpenDisplay().

  w	    Specifies the window.

  std_colormap
	    Specifies the XStandardColormap structure to be used.

  count     Specifies the number of colormaps.

  property  Specifies the property name.

Availability
  Release 4 and later.

Description
  XSetRGBColormaps()  replaces	the  RGB colormap definition in the specified property on the named window.  If the property does not already
  exist, XSetRGBColormaps() sets the RGB colormap definition in the specified property on the window.  The property is stored with a type  of
  RGB_COLOR_MAP  and  a  format  of 32.  Note that it is the caller's responsibility to honor the ICCCM restriction that only RGB_DEFAULT_MAP
  contain more than one definition.

  To create a standard colormap, follow this procedure:

  1.   Open a new connection to the same server.

  2.   Grab the server.

  3.   See if property is on the property list of the root window for the display, using XGetStandardColormap().  If so, see if the  colormap
       field is non-zero.  If it is, the colormap already exists.

  4.   If the desired property is not present, do the following:

       o  Determine the color capabilities of the display.  Choose a visual.

       o  Create a colormap (not required for XA_RGB_DEFAULT_MAP).

       o  Call XAllocColorPlanes() or XAllocColorCells() to allocate cells in the colormap.

       o  Call XStoreColors() to store appropriate color values in the colormap.

       o  Fill in the descriptive fields in the structure.

       o  Call XSetRGBColormaps() to set the property on the root window.

       o  Use XSetCloseDownMode() to make the resource permanent.

       o  Close the new connection to the server.

  5.   Ungrab the server.

  6.   XSetRGBColormaps() supersedes XSetStandardColormap().

  For more information, see Volume One, Chapter 7, Color.

Structures
     typedef struct {
	 Colormap colormap;
	 unsigned long red_max;
	 unsigned long red_mult;
	 unsigned long green_max;
	 unsigned long green_mult;
	 unsigned long blue_max;
	 unsigned long blue_mult;
	 unsigned long base_pixel;
	 VisualID visualid;	     /* added by ICCCM version 1 */
	 XID killid;		     /* added by ICCCM version 1 */
     } XStandardColormap;

Errors
  BadAlloc
  BadAtom
  BadWindow

See Also
  XAllocStandardColormap(), XGetRGBColormaps(), XVisualIDFromVisual().

Xlib - Window Manager Hints													XSetRGBColormaps()