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.

107 lines
3.3 KiB

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. | 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. /* $Id$ */
  21. #ifndef PHP_INTERBASE_H
  22. #define PHP_INTERBASE_H
  23. extern zend_module_entry ibase_module_entry;
  24. #define phpext_interbase_ptr &ibase_module_entry
  25. PHP_MINIT_FUNCTION(ibase);
  26. PHP_RINIT_FUNCTION(ibase);
  27. PHP_MSHUTDOWN_FUNCTION(ibase);
  28. PHP_RSHUTDOWN_FUNCTION(ibase);
  29. PHP_MINFO_FUNCTION(ibase);
  30. PHP_FUNCTION(ibase_connect);
  31. PHP_FUNCTION(ibase_pconnect);
  32. PHP_FUNCTION(ibase_close);
  33. PHP_FUNCTION(ibase_drop_db);
  34. PHP_FUNCTION(ibase_query);
  35. PHP_FUNCTION(ibase_fetch_row);
  36. PHP_FUNCTION(ibase_fetch_assoc);
  37. PHP_FUNCTION(ibase_fetch_object);
  38. PHP_FUNCTION(ibase_free_result);
  39. PHP_FUNCTION(ibase_name_result);
  40. PHP_FUNCTION(ibase_prepare);
  41. PHP_FUNCTION(ibase_execute);
  42. PHP_FUNCTION(ibase_free_query);
  43. PHP_FUNCTION(ibase_timefmt);
  44. PHP_FUNCTION(ibase_gen_id);
  45. PHP_FUNCTION(ibase_num_fields);
  46. PHP_FUNCTION(ibase_num_params);
  47. #if abies_0
  48. PHP_FUNCTION(ibase_num_rows);
  49. #endif
  50. PHP_FUNCTION(ibase_affected_rows);
  51. PHP_FUNCTION(ibase_field_info);
  52. PHP_FUNCTION(ibase_param_info);
  53. PHP_FUNCTION(ibase_trans);
  54. PHP_FUNCTION(ibase_commit);
  55. PHP_FUNCTION(ibase_rollback);
  56. PHP_FUNCTION(ibase_commit_ret);
  57. PHP_FUNCTION(ibase_rollback_ret);
  58. PHP_FUNCTION(ibase_blob_create);
  59. PHP_FUNCTION(ibase_blob_add);
  60. PHP_FUNCTION(ibase_blob_cancel);
  61. PHP_FUNCTION(ibase_blob_open);
  62. PHP_FUNCTION(ibase_blob_get);
  63. PHP_FUNCTION(ibase_blob_close);
  64. PHP_FUNCTION(ibase_blob_echo);
  65. PHP_FUNCTION(ibase_blob_info);
  66. PHP_FUNCTION(ibase_blob_import);
  67. PHP_FUNCTION(ibase_add_user);
  68. PHP_FUNCTION(ibase_modify_user);
  69. PHP_FUNCTION(ibase_delete_user);
  70. PHP_FUNCTION(ibase_service_attach);
  71. PHP_FUNCTION(ibase_service_detach);
  72. PHP_FUNCTION(ibase_backup);
  73. PHP_FUNCTION(ibase_restore);
  74. PHP_FUNCTION(ibase_maintain_db);
  75. PHP_FUNCTION(ibase_db_info);
  76. PHP_FUNCTION(ibase_server_info);
  77. PHP_FUNCTION(ibase_errmsg);
  78. PHP_FUNCTION(ibase_errcode);
  79. PHP_FUNCTION(ibase_wait_event);
  80. PHP_FUNCTION(ibase_set_event_handler);
  81. PHP_FUNCTION(ibase_free_event_handler);
  82. #else
  83. #define phpext_interbase_ptr NULL
  84. #endif /* PHP_INTERBASE_H */
  85. /*
  86. * Local variables:
  87. * tab-width: 4
  88. * c-basic-offset: 4
  89. * End:
  90. */