php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
php_com_dotnet.h
Go to the documentation of this file.
1/*
2 +----------------------------------------------------------------------+
3 | Copyright (c) The PHP Group |
4 +----------------------------------------------------------------------+
5 | This source file is subject to version 3.01 of the PHP license, |
6 | that is bundled with this package in the file LICENSE, and is |
7 | available through the world-wide-web at the following url: |
8 | https://www.php.net/license/3_01.txt |
9 | If you did not receive a copy of the PHP license and are unable to |
10 | obtain it through the world-wide-web, please send a note to |
11 | license@php.net so we can mail you a copy immediately. |
12 +----------------------------------------------------------------------+
13 | Author: Wez Furlong <wez@thebrainroom.com> |
14 +----------------------------------------------------------------------+
15 */
16
17#ifndef PHP_COM_DOTNET_H
18#define PHP_COM_DOTNET_H
19
21#define phpext_com_dotnet_ptr &com_dotnet_module_entry
22
23#ifdef ZTS
24#include "TSRM.h"
25#endif
26
27#define PHP_COM_DOTNET_API __declspec(dllexport)
28
29#include "php_version.h"
30#define PHP_COM_DOTNET_VERSION PHP_VERSION
31
32PHP_MINIT_FUNCTION(com_dotnet);
33PHP_MSHUTDOWN_FUNCTION(com_dotnet);
34PHP_RINIT_FUNCTION(com_dotnet);
35PHP_RSHUTDOWN_FUNCTION(com_dotnet);
36PHP_MINFO_FUNCTION(com_dotnet);
37
43 void *dotnet_runtime_stuff; /* opaque to avoid cluttering up other modules */
44 int code_page; /* default code_page if left unspecified */
47
48#if defined(ZTS) && defined(COMPILE_DL_COM_DOTNET)
50#endif
51
53#define COMG(v) ZEND_MODULE_GLOBALS_ACCESSOR(com_dotnet, v)
54
55#endif /* PHP_COM_DOTNET_H */
zend_module_entry com_dotnet_module_entry
#define PHP_MSHUTDOWN_FUNCTION
Definition php.h:401
#define PHP_MINIT_FUNCTION
Definition php.h:400
#define PHP_MINFO_FUNCTION
Definition php.h:404
#define PHP_RINIT_FUNCTION
Definition php.h:402
#define PHP_RSHUTDOWN_FUNCTION
Definition php.h:403
void * dotnet_runtime_stuff
int code_page
bool autoreg_on
bool autoreg_case_sensitive
bool allow_dcom
bool rshutdown_started
bool autoreg_verbose
#define ZEND_TSRMLS_CACHE_EXTERN()
Definition zend.h:67
#define ZEND_END_MODULE_GLOBALS(module_name)
Definition zend_API.h:248
#define ZEND_EXTERN_MODULE_GLOBALS(module_name)
Definition zend_API.h:270
#define ZEND_BEGIN_MODULE_GLOBALS(module_name)
Definition zend_API.h:246
struct _zend_module_entry zend_module_entry