home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / .tmpmerge2.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-03-24  |  760 b   |  42 lines

  1. #ifndef PHP_XDIFF_H
  2. #define PHP_XDIFF_H
  3.  
  4. #foo
  5. #define phpext_xdiff_ptr &diff_module_entry
  6.  
  7. #ifdef PHP_WIN32
  8. #define PHP_XDIFF_API __declspec(dllexport)
  9. #else
  10. #define PHP_XDIFF_API
  11. #endif
  12.  
  13. #ifdef ZTS
  14. #include "TSRM.h"
  15. #endif
  16.  
  17. PHP_MINIT_FUNCTION(xdiff);
  18. PHP_MINFO_FUNCTION(xdiff);
  19.  
  20. PHP_FUNCTION(xdiff_file_diff);
  21. PHP_FUNCTION(xdiff_file_diff_binary);
  22. PHP_FUNCTION(xdiff_file_patch);
  23. PHP_FUNCTION(xdiff_file_patch_binary);
  24. PHP_FUNCTION(xdiff_file_merge3);
  25.  
  26. PHP_FUNCTION(xdiff_string_diff);
  27. PHP_FUNCTION(xdiff_string_diff_binary);
  28. PHP_FUNCTION(xdiff_string_patch);
  29. PHP_FUNCTION(xdiff_string_patch_binary);
  30. PHP_FUNCTION(xdiff_string_merge3);
  31.  
  32. #endif    /* PHP_XDIFF_H */
  33.  
  34.  
  35. /*
  36.  * Local variables:
  37.  * tab-width: 4
  38.  * c-basic-offset: 4
  39.  * indent-tabs-mode: t
  40.  * End:
  41.  */
  42.