1
0
mirror of https://github.com/danog/ext-pq.git synced 2024-11-26 11:54:50 +01:00
ext-pq/php_pq.h

58 lines
1.6 KiB
C
Raw Permalink Normal View History

2013-02-20 22:43:42 +01:00
/*
+--------------------------------------------------------------------+
| PECL :: pq |
+--------------------------------------------------------------------+
| Redistribution and use in source and binary forms, with or without |
| modification, are permitted provided that the conditions mentioned |
| in the accompanying LICENSE file are met. |
+--------------------------------------------------------------------+
| Copyright (c) 2013, Michael Wallner <mike@php.net> |
+--------------------------------------------------------------------+
*/
#ifndef PHP_PQ_H
#define PHP_PQ_H
2020-10-27 19:33:06 +01:00
#define PHP_PQ_VERSION "2.1.9dev"
2013-02-20 22:43:42 +01:00
#ifdef PHP_WIN32
# define PHP_PQ_API __declspec(dllexport)
#elif defined(__GNUC__) && __GNUC__ >= 4
2014-04-04 15:48:20 +02:00
# define PHP_PQ_API extern __attribute__ ((visibility("default")))
2013-02-20 22:43:42 +01:00
#else
2014-04-04 15:48:20 +02:00
# define PHP_PQ_API extern
2013-02-20 22:43:42 +01:00
#endif
2014-10-23 10:16:16 +02:00
extern int pq_module_number;
extern zend_module_entry pq_module_entry;
#define phpext_pq_ptr &pq_module_entry
2015-08-17 10:19:30 +02:00
ZEND_BEGIN_MODULE_GLOBALS(php_pq)
struct {
/* for ext-raphf */
zend_string *name;
} connection;
ZEND_END_MODULE_GLOBALS(php_pq)
ZEND_EXTERN_MODULE_GLOBALS(php_pq);
2014-10-23 10:16:16 +02:00
2013-02-20 22:43:42 +01:00
#ifdef ZTS
2015-08-17 10:19:30 +02:00
# include "TSRM/TSRM.h"
# define PHP_PQ_G ((zend_php_pq_globals *) (*((void ***) tsrm_get_ls_cache()))[TSRM_UNSHUFFLE_RSRC_ID(php_pq_globals_id)])
2013-02-20 22:43:42 +01:00
#else
2015-08-17 10:19:30 +02:00
# define PHP_PQ_G (&php_pq_globals)
2013-02-20 22:43:42 +01:00
#endif
#endif /* PHP_PQ_H */
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/