| 
									
										
										
										
											2001-01-19 09:45:02 +00:00
										 |  |  | /* Unicode name database interface */ | 
					
						
							| 
									
										
										
										
											2000-06-28 16:37:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-19 09:45:02 +00:00
										 |  |  | #ifndef Py_UCNHASH_H
 | 
					
						
							|  |  |  | #define Py_UCNHASH_H
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2000-06-28 16:37:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-05 22:31:58 +00:00
										 |  |  | /* revised ucnhash CAPI interface (exported through a "wrapper") */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PyUnicodeData_CAPSULE_NAME "unicodedata.ucnhash_CAPI"
 | 
					
						
							| 
									
										
										
										
											2001-01-19 09:45:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Size of this struct */ | 
					
						
							|  |  |  |     int size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Get name for a given character code.  Returns non-zero if
 | 
					
						
							| 
									
										
										
										
											2006-03-09 23:38:20 +00:00
										 |  |  |        success, zero if not.  Does not set Python exceptions.  | 
					
						
							|  |  |  |        If self is NULL, data come from the default version of the database. | 
					
						
							| 
									
										
										
										
											2006-03-10 11:20:04 +00:00
										 |  |  |        If it is not NULL, it should be a unicodedata.ucd_X_Y_Z object */ | 
					
						
							| 
									
										
										
										
											2006-03-09 23:38:20 +00:00
										 |  |  |     int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen); | 
					
						
							| 
									
										
										
										
											2001-01-19 09:45:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Get character code for a given name.  Same error handling
 | 
					
						
							|  |  |  |        as for getname. */ | 
					
						
							| 
									
										
										
										
											2006-03-09 23:38:20 +00:00
										 |  |  |     int (*getcode)(PyObject *self, const char* name, int namelen, Py_UCS4* code); | 
					
						
							| 
									
										
										
										
											2001-01-19 09:45:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | } _PyUnicode_Name_CAPI; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* !Py_UCNHASH_H */
 |