Commits
Ryan Schmidt authored 7dd9cd0ed5b
1 + | --- freeimage.c.orig 2004-07-22 08:32:54.000000000 -0500 |
2 + | +++ freeimage.c 2012-05-25 17:48:52.000000000 -0500 |
3 + | |
4 + | * |
5 + | * Every user visible function must have an entry in freeimage_functions[]. |
6 + | */ |
7 + | -function_entry freeimage_functions[] = { |
8 + | +zend_function_entry freeimage_functions[] = { |
9 + | /* Bitmap management functions */ |
10 + | PHP_FE(freeimage_load, NULL) |
11 + | PHP_FE(freeimage_save, NULL) |
12 + | |
13 + | if (zend_parse_parameters(argc TSRMLS_CC, "lsbb|b", &fif, &filename, &filename_len, &create_new, &read_only, &keep_cache_in_memory) == FAILURE) |
14 + | return; |
15 + | multibitmap = (FIMULTIBITMAP *)emalloc(sizeof(FIMULTIBITMAP)); |
16 + | - multibitmap = FreeImage_OpenMultiBitmap((FREE_IMAGE_FORMAT)fif, filename, create_new, read_only, keep_cache_in_memory); |
17 + | + multibitmap = FreeImage_OpenMultiBitmap((FREE_IMAGE_FORMAT)fif, filename, create_new, read_only, keep_cache_in_memory, /* int flags FI_DEFAULT(0) */ 0); |
18 + | if (multibitmap != NULL) { |
19 + | ZEND_REGISTER_RESOURCE(return_value, multibitmap, le_freeimage_multibitmap); |
20 + | } else { |