php_interbase.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 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. | Authors: Jouni Ahto <jouni.ahto@exdec.fi> |
  16. | Andrew Avdeev <andy@simgts.mv.ru> |
  17. | Ard Biesheuvel <a.k.biesheuvel@its.tudelft.nl> |
  18. +----------------------------------------------------------------------+
  19. */
  20. #ifndef PHP_INTERBASE_H
  21. #define PHP_INTERBASE_H
  22. extern zend_module_entry ibase_module_entry;
  23. #define phpext_interbase_ptr &ibase_module_entry
  24. #include "php_version.h"
  25. #define PHP_INTERBASE_VERSION PHP_VERSION
  26. PHP_MINIT_FUNCTION(ibase);
  27. PHP_RINIT_FUNCTION(ibase);
  28. PHP_MSHUTDOWN_FUNCTION(ibase);
  29. PHP_RSHUTDOWN_FUNCTION(ibase);
  30. PHP_MINFO_FUNCTION(ibase);
  31. PHP_FUNCTION(ibase_connect);
  32. PHP_FUNCTION(ibase_pconnect);
  33. PHP_FUNCTION(ibase_close);
  34. PHP_FUNCTION(ibase_drop_db);
  35. PHP_FUNCTION(ibase_query);
  36. PHP_FUNCTION(ibase_fetch_row);
  37. PHP_FUNCTION(ibase_fetch_assoc);
  38. PHP_FUNCTION(ibase_fetch_object);
  39. PHP_FUNCTION(ibase_free_result);
  40. PHP_FUNCTION(ibase_name_result);
  41. PHP_FUNCTION(ibase_prepare);
  42. PHP_FUNCTION(ibase_execute);
  43. PHP_FUNCTION(ibase_free_query);
  44. PHP_FUNCTION(ibase_timefmt);
  45. PHP_FUNCTION(ibase_gen_id);
  46. PHP_FUNCTION(ibase_num_fields);
  47. PHP_FUNCTION(ibase_num_params);
  48. #if abies_0
  49. PHP_FUNCTION(ibase_num_rows);
  50. #endif
  51. PHP_FUNCTION(ibase_affected_rows);
  52. PHP_FUNCTION(ibase_field_info);
  53. PHP_FUNCTION(ibase_param_info);
  54. PHP_FUNCTION(ibase_trans);
  55. PHP_FUNCTION(ibase_commit);
  56. PHP_FUNCTION(ibase_rollback);
  57. PHP_FUNCTION(ibase_commit_ret);
  58. PHP_FUNCTION(ibase_rollback_ret);
  59. PHP_FUNCTION(ibase_blob_create);
  60. PHP_FUNCTION(ibase_blob_add);
  61. PHP_FUNCTION(ibase_blob_cancel);
  62. PHP_FUNCTION(ibase_blob_open);
  63. PHP_FUNCTION(ibase_blob_get);
  64. PHP_FUNCTION(ibase_blob_close);
  65. PHP_FUNCTION(ibase_blob_echo);
  66. PHP_FUNCTION(ibase_blob_info);
  67. PHP_FUNCTION(ibase_blob_import);
  68. PHP_FUNCTION(ibase_add_user);
  69. PHP_FUNCTION(ibase_modify_user);
  70. PHP_FUNCTION(ibase_delete_user);
  71. PHP_FUNCTION(ibase_service_attach);
  72. PHP_FUNCTION(ibase_service_detach);
  73. PHP_FUNCTION(ibase_backup);
  74. PHP_FUNCTION(ibase_restore);
  75. PHP_FUNCTION(ibase_maintain_db);
  76. PHP_FUNCTION(ibase_db_info);
  77. PHP_FUNCTION(ibase_server_info);
  78. PHP_FUNCTION(ibase_errmsg);
  79. PHP_FUNCTION(ibase_errcode);
  80. PHP_FUNCTION(ibase_wait_event);
  81. PHP_FUNCTION(ibase_set_event_handler);
  82. PHP_FUNCTION(ibase_free_event_handler);
  83. #else
  84. #define phpext_interbase_ptr NULL
  85. #endif /* PHP_INTERBASE_H */
  86. /*
  87. * Local variables:
  88. * tab-width: 4
  89. * c-basic-offset: 4
  90. * End:
  91. */