static int _rollback_transactions(zend_rsrc_list_entry *rsrc)
{
PGconn *link = (PGconn *)rsrc->ptr;
+ PGLS_FETCH();
PGG(ignore_notices) = 1;
PQexec(link,"BEGIN;ROLLBACK;");
/* True global (no need for thread safety */
static int module_initialized = 0;
-void php_log_err(char *log_message)
+PHPAPI void php_log_err(char *log_message)
{
FILE *log_file;
char error_time_str[128];
void phperror(char *error);
PHPAPI int php_write(void *buf, uint size);
PHPAPI int php_printf(const char *format, ...);
-void php_log_err(char *log_message);
+PHPAPI void php_log_err(char *log_message);
int Debug(char *format, ...);
int cfgparse(void);