StdCmap.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: StdCmap.h,v 1.5 2001/02/09 02:03:53 xorgcvs Exp $ */
  2. /*
  3.  
  4. Copyright 1988, 1998  The Open Group
  5. Permission to use, copy, modify, distribute, and sell this software and its
  6. documentation for any purpose is hereby granted without fee, provided that
  7. the above copyright notice appear in all copies and that both that
  8. copyright notice and this permission notice appear in supporting
  9. documentation.
  10. The above copyright notice and this permission notice shall be included in
  11. all copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  15. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  16. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  17. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of The Open Group shall not be
  19. used in advertising or otherwise to promote the sale, use or other dealings
  20. in this Software without prior written authorization from The Open Group.
  21. */
  22. /* $XFree86: xc/lib/Xmu/StdCmap.h,v 1.8 2001/01/23 17:38:14 keithp Exp $ */
  23. /*
  24.  * The interfaces described by this header file are for miscellaneous utilities
  25.  * and are not part of the Xlib standard.
  26.  */
  27. #ifndef _XMU_STDCMAP_H_
  28. #define _XMU_STDCMAP_H_
  29. #include <X11/Xfuncproto.h>
  30. _XFUNCPROTOBEGIN
  31. Status XmuAllStandardColormaps
  32. (
  33.  Display *dpy
  34.  );
  35. Status XmuCreateColormap
  36. (
  37.  Display *dpy,
  38.  XStandardColormap *colormap
  39.  );
  40. void XmuDeleteStandardColormap
  41. (
  42.  Display *dpy,
  43.  int screen,
  44.  Atom property
  45.  );
  46. Status XmuGetColormapAllocation
  47. (
  48.  XVisualInfo *vinfo,
  49.  Atom property,
  50.  unsigned long *red_max_return,
  51.  unsigned long *green_max_return,
  52.  unsigned long *blue_max_return
  53.  );
  54. Status XmuLookupStandardColormap
  55. (
  56.  Display *dpy,
  57.  int screen,
  58.  VisualID visualid,
  59.  unsigned int depth,
  60.  Atom property,
  61.  Bool replace,
  62.  Bool retain
  63.  );
  64. XStandardColormap *XmuStandardColormap
  65. (
  66.  Display *dpy,
  67.  int screen,
  68.  VisualID visualid,
  69.  unsigned int depth,
  70.  Atom property,
  71.  Colormap cmap,
  72.  unsigned long red_max,
  73.  unsigned long green_max,
  74.  unsigned long blue_max
  75.  );
  76. Status XmuVisualStandardColormaps
  77. (
  78.  Display *dpy,
  79.  int screen,
  80.  VisualID visualid,
  81.  unsigned int depth,
  82.  Bool replace,
  83.  Bool retain
  84.  );
  85. Bool XmuDistinguishableColors
  86. (
  87.  XColor *colors,
  88.  int count
  89.  );
  90. Bool XmuDistinguishablePixels
  91. (
  92.  Display *dpy,
  93.  Colormap cmap,
  94.  unsigned long *pixels,
  95.  int count
  96.  );
  97. _XFUNCPROTOEND
  98. #endif /* _XMU_STDCMAP_H_ */