You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
2.0 KiB

25 years ago
27 years ago
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2006 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Chad Robinson <chadr@brttech.com> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. /*
  20. filePro 4.x support developed by Chad Robinson, chadr@brttech.com
  21. Contact Chad Robinson at BRT Technical Services Corp. for details.
  22. filePro is a registered trademark by Fiserv, Inc. This file contains
  23. no code or information that is not freely available from the filePro
  24. web site at http://www.fileproplus.com/
  25. */
  26. #ifndef PHP_FILEPRO_H
  27. #define PHP_FILEPRO_H
  28. #if HAVE_FILEPRO
  29. extern zend_module_entry filepro_module_entry;
  30. #define phpext_filepro_ptr &filepro_module_entry
  31. PHP_FUNCTION(filepro);
  32. PHP_FUNCTION(filepro_rowcount);
  33. PHP_FUNCTION(filepro_fieldname);
  34. PHP_FUNCTION(filepro_fieldtype);
  35. PHP_FUNCTION(filepro_fieldwidth);
  36. PHP_FUNCTION(filepro_fieldcount);
  37. PHP_FUNCTION(filepro_retrieve);
  38. PHP_MINIT_FUNCTION(filepro);
  39. PHP_RINIT_FUNCTION(filepro);
  40. PHP_RSHUTDOWN_FUNCTION(filepro);
  41. PHP_MSHUTDOWN_FUNCTION(filepro);
  42. #else
  43. #define phpext_filepro_ptr NULL
  44. #endif
  45. #endif /* PHP_FILEPRO_H */