blob: ba075a43bb4a1f3d86d88a06559914a69138d4b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/* Generated by Cython 0.25.2 */
#ifndef __PYX_HAVE__pyisda__curve
#define __PYX_HAVE__pyisda__curve
/* "pyisda/curve.pyx":24
* cdef int SUCCESS = 0
*
* cpdef public enum BadDay: # <<<<<<<<<<<<<<
* FOLLOW = <long>'F'
* PREVIOUS = <long>'P'
*/
enum BadDay {
/* "pyisda/curve.pyx":28
* PREVIOUS = <long>'P'
* NONE = <long>'N'
* MODIFIED = <long>'M' # <<<<<<<<<<<<<<
*
* cdef inline shared_ptr[TCurve] make_shared(TCurve* ptr):
*/
FOLLOW = ((long)'F'),
PREVIOUS = ((long)'P'),
NONE = ((long)'N'),
MODIFIED = ((long)'M')
};
#ifndef __PYX_HAVE_API__pyisda__curve
#ifndef __PYX_EXTERN_C
#ifdef __cplusplus
#define __PYX_EXTERN_C extern "C"
#else
#define __PYX_EXTERN_C extern
#endif
#endif
#ifndef DL_IMPORT
#define DL_IMPORT(_T) _T
#endif
#endif /* !__PYX_HAVE_API__pyisda__curve */
#if PY_MAJOR_VERSION < 3
PyMODINIT_FUNC initcurve(void);
#else
PyMODINIT_FUNC PyInit_curve(void);
#endif
#endif /* !__PYX_HAVE__pyisda__curve */
|