mirror of
https://github.com/pcsc-for-php/pcsc.git
synced 2026-08-08 21:09:26 +02:00
git-svn-id: https://svn.php.net/repository/pecl/pcsc/trunk@335788 c90b9560-bf6c-de11-be94-00142212c4b1
56 lines
1.3 KiB
C
56 lines
1.3 KiB
C
#ifndef PHP_PCSC_H
|
|
#define PHP_PCSC_H
|
|
|
|
extern zend_module_entry pcsc_module_entry;
|
|
#define phpext_pcsc_ptr &pcsc_module_entry
|
|
|
|
#define PHP_PCSC_VERSION "0.3.1"
|
|
|
|
#ifdef PHP_WIN32
|
|
#define PHP_PCSC_API __declspec(dllexport)
|
|
#else
|
|
#define PHP_PCSC_API
|
|
#endif
|
|
|
|
#ifdef ZTS
|
|
#include "TSRM.h"
|
|
#endif
|
|
|
|
#include <winscard.h>
|
|
#ifndef PHP_WIN32
|
|
#include <PCSC/pcsclite.h>
|
|
#endif
|
|
|
|
PHP_MINIT_FUNCTION(pcsc);
|
|
PHP_MSHUTDOWN_FUNCTION(pcsc);
|
|
PHP_MINFO_FUNCTION(pcsc);
|
|
|
|
PHP_FUNCTION(scard_establish_context);
|
|
PHP_FUNCTION(scard_is_valid_context);
|
|
PHP_FUNCTION(scard_release_context);
|
|
PHP_FUNCTION(scard_list_readers);
|
|
PHP_FUNCTION(scard_connect);
|
|
//PHP_FUNCTION(scard_reconnect);
|
|
PHP_FUNCTION(scard_disconnect);
|
|
PHP_FUNCTION(scard_status);
|
|
//PHP_FUNCTION(scard_get_status_change);
|
|
PHP_FUNCTION(scard_transmit);
|
|
PHP_FUNCTION(scard_last_errno);
|
|
PHP_FUNCTION(scard_errstr);
|
|
|
|
#define PHP_PCSC_CTX_RES_NAME "PC/SC Context"
|
|
#define PHP_PCSC_CONN_RES_NAME "PC/SC Connection"
|
|
|
|
static char* php_pcsc_error_to_string(DWORD dwRC);
|
|
|
|
ZEND_BEGIN_MODULE_GLOBALS(pcsc)
|
|
DWORD last_errno;
|
|
ZEND_END_MODULE_GLOBALS(pcsc)
|
|
|
|
#ifdef ZTS
|
|
#define PCSC_G(v) TSRMG(pcsc_globals_id,zend_pcsc_globals*,v)
|
|
#else
|
|
#define PCSC_G(v) (pcsc_globals.v)
|
|
#endif
|
|
|
|
#endif /* PHP_PCSC_H */
|