home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / .tmpmerge4.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-03-24  |  582 b   |  36 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(foo);
  18. PHP_MINFO_FUNCTION(foo);
  19.  
  20. PHP_FUNCTION(xdiff_string_diff);
  21. PHP_FUNCTION(xdiff_string_diff_binary);
  22. PHP_FUNCTION(xdiff_string_patch);
  23. PHP_FUNCTION(xdiff_string_patch_binary);
  24. PHP_FUNCTION(xdiff_string_merge3);
  25.  
  26. #endif    /* PHP_XDIFF_H */
  27.  
  28.  
  29. /*
  30.  * Local variables:
  31.  * tab-width: 4
  32.  * c-basic-offset: 4
  33.  * indent-tabs-mode: t
  34.  * End:
  35.  */
  36.