This repository has been archived on 2018-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
OpenSQLManager/OpenSQLManager.c

32 lines
645 B
C
Raw Normal View History

/**
* OpenSQLManager
*
* Free Database manager for Open Source Databases
*
* @package OpenSQLManager
* @author Timothy J. Warren
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/OpenSQLManager
* @license https://timshomepage.net/dbaj.txt
*/
/**
* Wrapper program for embeded php
*/
#include <sapi/embed/php_embed.h>
int main(int argc, char *argv[])
2012-11-28 10:11:03 -05:00
{
PHP_EMBED_START_BLOCK(argc,argv)
2012-11-28 10:11:03 -05:00
zend_eval_string(" \
2012-11-30 08:29:39 -05:00
$name = 'wxwidgets.'.PHP_SHLIB_SUFFIX; \
dl($name); \
2012-11-28 10:11:03 -05:00
chdir(dirname($argv[0])); \
require ('OpenSQLManager.php'); \
", NULL, "TEST" TSRMLS_CC);
PHP_EMBED_END_BLOCK()
return 0;
}