forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphp_gmp_int.h
39 lines (31 loc) · 836 Bytes
/
php_gmp_int.h
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
#ifndef incl_PHP_GMP_INT_H
#define incl_PHP_GMP_INT_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
#include <gmp.h>
#ifdef PHP_WIN32
# define PHP_GMP_API __declspec(dllexport)
#elif defined(__GNUC__) && __GNUC__ >= 4
# define PHP_GMP_API __attribute__ ((visibility("default")))
#else
# define PHP_GMP_API
#endif
typedef struct _gmp_object {
mpz_t num;
zend_object std;
} gmp_object;
static inline gmp_object *php_gmp_object_from_zend_object(zend_object *zobj) {
return (gmp_object *)( ((char *)zobj) - XtOffsetOf(gmp_object, std) );
}
PHP_GMP_API zend_class_entry *php_gmp_class_entry();
/* GMP and MPIR use different datatypes on different platforms */
#ifdef PHP_WIN32
typedef zend_long gmp_long;
typedef zend_ulong gmp_ulong;
#else
typedef long gmp_long;
typedef unsigned long gmp_ulong;
#endif
#endif