Staging
v0.5.1
https://github.com/python/cpython
Revision 21000caee72914d0108c58918edb1817d67e4025 authored by Jeremy Hylton on 16 October 2000, 15:36:25 UTC, committed by Jeremy Hylton on 16 October 2000, 15:36:25 UTC
1 parent 355e2f2
Raw File
Tip revision: 21000caee72914d0108c58918edb1817d67e4025 authored by Jeremy Hylton on 16 October 2000, 15:36:25 UTC
distutils setup files for Tkinter
Tip revision: 21000ca
ucnhash.h

#include "Python.h"
#include <stdlib.h>

/* --- C API ----------------------------------------------------*/
/* C API for usage by other Python modules */
typedef struct _Py_UCNHashAPI
{
    unsigned long cKeys;
    unsigned long cchMax;
    unsigned long (*hash)(const char *key, unsigned int cch);
    const void *(*getValue)(unsigned long iKey);
} _Py_UCNHashAPI;

typedef struct 
{
    const char *pszUCN;
    Py_UCS4 value;
} _Py_UnicodeCharacterName;

back to top