diff options
author | Brad House <bradmssw@php.net> | 2002-02-27 19:46:59 +0000 |
---|---|---|
committer | Brad House <bradmssw@php.net> | 2002-02-27 19:46:59 +0000 |
commit | 20219b1e24ac1360bc2e4dcc60117691949d95b0 (patch) | |
tree | cea0a2b2aac0d5eed03edd28b85a082f9f7d66a5 /ext/mcve/php_mcve.h | |
parent | 313a3602bb8c25b1a060bd5cfae87d546f32ccf2 (diff) | |
download | php-git-20219b1e24ac1360bc2e4dcc60117691949d95b0.tar.gz |
Initial MCVE extension added (Credit Card Processing)
Diffstat (limited to 'ext/mcve/php_mcve.h')
-rw-r--r-- | ext/mcve/php_mcve.h | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/ext/mcve/php_mcve.h b/ext/mcve/php_mcve.h new file mode 100644 index 0000000000..cac182c709 --- /dev/null +++ b/ext/mcve/php_mcve.h @@ -0,0 +1,89 @@ +/* + * basic mcve php module + * + * $Id$ + */ + +#ifndef _PHP_MCVE_H +#define _PHP_MCVE_H + +extern zend_module_entry php_mcve_module_entry; + +#define mcve_module_ptr &php_mcve_module_entry +#define phpext_mcve_ptr mcve_module_ptr + +//#if COMPILE_DL +// DLEXPORT zend_module_entry *get_module(void) { return +//&php_mcve_module_entry; } +//#endif + + +#define PHP_MCVE_VERSION "1.0" + +#define MCVE_CONST (CONST_CS | CONST_PERSISTENT) + +PHP_MINIT_FUNCTION(mcve); +PHP_MINFO_FUNCTION(mcve); + +PHP_FUNCTION(mcve_initengine); +PHP_FUNCTION(mcve_initconn); +PHP_FUNCTION(mcve_deleteresponse); +PHP_FUNCTION(mcve_destroyconn); +PHP_FUNCTION(mcve_setdropfile); +PHP_FUNCTION(mcve_setip); +PHP_FUNCTION(mcve_setssl); +PHP_FUNCTION(mcve_settimeout); +PHP_FUNCTION(mcve_connect); +PHP_FUNCTION(mcve_returnstatus); +PHP_FUNCTION(mcve_returncode); +PHP_FUNCTION(mcve_transactionssent); +PHP_FUNCTION(mcve_transactionitem); +PHP_FUNCTION(mcve_transactionbatch); +PHP_FUNCTION(mcve_transactionid); +PHP_FUNCTION(mcve_transactionauth); +PHP_FUNCTION(mcve_transactionavs); +PHP_FUNCTION(mcve_transactioncv); +PHP_FUNCTION(mcve_transactiontext); +PHP_FUNCTION(mcve_monitor); +PHP_FUNCTION(mcve_transinqueue); +PHP_FUNCTION(mcve_checkstatus); +PHP_FUNCTION(mcve_completeauthorizations); +PHP_FUNCTION(mcve_sale); +PHP_FUNCTION(mcve_preauth); +PHP_FUNCTION(mcve_override); +PHP_FUNCTION(mcve_void); +PHP_FUNCTION(mcve_preauthcompletion); +PHP_FUNCTION(mcve_force); +PHP_FUNCTION(mcve_return); +PHP_FUNCTION(mcve_iscommadelimited); +PHP_FUNCTION(mcve_parsecommadelimited); +PHP_FUNCTION(mcve_getcommadelimited); +PHP_FUNCTION(mcve_getcell); +PHP_FUNCTION(mcve_getcellbynum); +PHP_FUNCTION(mcve_numcolumns); +PHP_FUNCTION(mcve_numrows); +PHP_FUNCTION(mcve_getheader); +PHP_FUNCTION(mcve_destroyengine); +PHP_FUNCTION(mcve_settle); +PHP_FUNCTION(mcve_qc); +PHP_FUNCTION(mcve_gut); +PHP_FUNCTION(mcve_gft); +PHP_FUNCTION(mcve_ub); +PHP_FUNCTION(mcve_gl); +PHP_FUNCTION(mcve_chkpwd); +PHP_FUNCTION(mcve_bt); + +PHP_FUNCTION(mcve_chngpwd); +PHP_FUNCTION(mcve_listusers); +PHP_FUNCTION(mcve_adduser); +PHP_FUNCTION(mcve_enableuser); +PHP_FUNCTION(mcve_disableuser); +PHP_FUNCTION(mcve_getuserarg); +PHP_FUNCTION(mcve_adduserarg); +PHP_FUNCTION(mcve_deleteusersetup); +PHP_FUNCTION(mcve_initusersetup); +PHP_FUNCTION(mcve_deluser); +PHP_FUNCTION(mcve_edituser); +PHP_FUNCTION(mcve_liststats); +#endif /* _PHP_MCVE_H */ + |