X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=src%2Fphp_pq.h;fp=src%2Fphp_pq.h;h=0000000000000000000000000000000000000000;hp=fc67bf0d132ecaf31c817327b825b6805afdcaf2;hb=daf2e8ab5eb324b0a0447e87a92afb6788a722a7;hpb=2711291c5bb35269676ac72b93bf9404eaf321b9 diff --git a/src/php_pq.h b/src/php_pq.h deleted file mode 100644 index fc67bf0..0000000 --- a/src/php_pq.h +++ /dev/null @@ -1,58 +0,0 @@ -/* - +--------------------------------------------------------------------+ - | 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 | - +--------------------------------------------------------------------+ -*/ - - -#ifndef PHP_PQ_H -#define PHP_PQ_H - -#define PHP_PQ_EXT_VERSION "1.0.0dev" - -int pq_module_number; -zend_module_entry pq_module_entry; -#define phpext_pq_ptr &pq_module_entry - -#ifdef PHP_WIN32 -# define PHP_PQ_API __declspec(dllexport) -#elif defined(__GNUC__) && __GNUC__ >= 4 -# define PHP_PQ_API __attribute__ ((visibility("default"))) -#else -# define PHP_PQ_API -#endif - -#ifdef ZTS -# include "TSRM.h" -#endif - -/* -ZEND_BEGIN_MODULE_GLOBALS(pq) - long global_value; - char *global_string; -ZEND_END_MODULE_GLOBALS(pq) - -#ifdef ZTS -#define PQ_G(v) TSRMG(pq_globals_id, zend_pq_globals *, v) -#else -#define PQ_G(v) (pq_globals.v) -#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 - */