Slightly modernize ext_skel and sekelton/

- .svnignore ->.gitignore
- Add .gitignore entries for DSO stand-alone builds stuff
- Docs don't use CVS but SVN
- reorder extname.c file so it needs less forward declarations
- take forward declarations out of php_extname.h
- Drop #if for 12 years old PHP version compatibility
This commit is contained in:
Johannes Schlüter 2013-07-17 23:15:37 +02:00
parent a5d177cbc8
commit f7e204d7ed
3 changed files with 92 additions and 74 deletions

View file

@ -18,15 +18,6 @@ extern zend_module_entry extname_module_entry;
#include "TSRM.h"
#endif
PHP_MINIT_FUNCTION(extname);
PHP_MSHUTDOWN_FUNCTION(extname);
PHP_RINIT_FUNCTION(extname);
PHP_RSHUTDOWN_FUNCTION(extname);
PHP_MINFO_FUNCTION(extname);
PHP_FUNCTION(confirm_extname_compiled); /* For testing, remove later. */
/* __function_declarations_here__ */
/*
Declare any global variables you may need between the BEGIN
and END macros here: