Add back typedefs for php_uint32 and php_int32

It's pretty likely that extensions rely on these, no need to break
things.
This commit is contained in:
Nikita Popov 2016-02-04 12:03:07 +01:00
parent 7e0459e7ce
commit fbe50b15dd

View file

@ -151,6 +151,10 @@ PHPAPI int php_prefix_varname(zval *result, zval *prefix, char *var_name, size_t
#define MT_N (624) #define MT_N (624)
/* Deprecated type aliases -- use the standard types instead */
typedef uint32_t php_uint32;
typedef int32_t php_int32;
typedef struct _php_basic_globals { typedef struct _php_basic_globals {
HashTable *user_shutdown_function_names; HashTable *user_shutdown_function_names;
HashTable putenv_ht; HashTable putenv_ht;