Bump version to 0.9.1.
[python/dscho.git] / Include / ucnhash.h
blob7bf3f5d47c972f61222976dee23158f58ba929bb
2 #include "Python.h"
3 #include <stdlib.h>
5 /* --- C API ----------------------------------------------------*/
6 /* C API for usage by other Python modules */
7 typedef struct _Py_UCNHashAPI
9 unsigned long cKeys;
10 unsigned long cchMax;
11 unsigned long (*hash)(const char *key, unsigned int cch);
12 const void *(*getValue)(unsigned long iKey);
13 } _Py_UCNHashAPI;
15 typedef struct
17 const char *pszUCN;
18 Py_UCS4 value;
19 } _Py_UnicodeCharacterName;