~ibmcharmers/charms/xenial/ibm-db2/trunk

« back to all changes in this revision

Viewing changes to .tox/py35/include/python3.5m/ucnhash.h

  • Committer: Rajith Venkata
  • Date: 2017-02-22 09:37:48 UTC
  • Revision ID: rajith.pv@in.ibm.com-20170222093748-fibtdsahuug31ra5
2ndcheckin for IBM-DB2 charm

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Unicode name database interface */
 
2
#ifndef Py_LIMITED_API
 
3
#ifndef Py_UCNHASH_H
 
4
#define Py_UCNHASH_H
 
5
#ifdef __cplusplus
 
6
extern "C" {
 
7
#endif
 
8
 
 
9
/* revised ucnhash CAPI interface (exported through a "wrapper") */
 
10
 
 
11
#define PyUnicodeData_CAPSULE_NAME "unicodedata.ucnhash_CAPI"
 
12
 
 
13
typedef struct {
 
14
 
 
15
    /* Size of this struct */
 
16
    int size;
 
17
 
 
18
    /* Get name for a given character code.  Returns non-zero if
 
19
       success, zero if not.  Does not set Python exceptions.
 
20
       If self is NULL, data come from the default version of the database.
 
21
       If it is not NULL, it should be a unicodedata.ucd_X_Y_Z object */
 
22
    int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen,
 
23
                   int with_alias_and_seq);
 
24
 
 
25
    /* Get character code for a given name.  Same error handling
 
26
       as for getname. */
 
27
    int (*getcode)(PyObject *self, const char* name, int namelen, Py_UCS4* code,
 
28
                   int with_named_seq);
 
29
 
 
30
} _PyUnicode_Name_CAPI;
 
31
 
 
32
#ifdef __cplusplus
 
33
}
 
34
#endif
 
35
#endif /* !Py_UCNHASH_H */
 
36
#endif /* !Py_LIMITED_API */