File: cmapobject.h

package info (click to toggle)
skencil 0.6.17-7
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 6,136 kB
  • ctags: 8,589
  • sloc: python: 36,672; ansic: 16,571; sh: 151; makefile: 92
file content (11 lines) | stat: -rw-r--r-- 282 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
#ifndef CMAPOBJECT_H
#define CMAPOBJECT_H

extern PyTypeObject PaxCMapType;
#define PaxCMap_Check(obj)	((obj)->ob_type == &PaxCMapType)

extern PyObject * PaxCMap_FromColormap Py_PROTO((Colormap, Display *, int));

Colormap PaxCMap_AsColormap(PyObject*);

#endif /* CMAPOBJECT_H */