|
| 1 | +#include "php_git2.h" |
| 2 | +#include "php_git2_priv.h" |
| 3 | +#include "diff.h" |
| 4 | + |
| 5 | +/* {{{ proto void git_diff_free(diff) |
| 6 | +*/ |
| 7 | +PHP_FUNCTION(git_diff_free) |
| 8 | +{ |
| 9 | +} |
| 10 | + |
| 11 | +/* {{{ proto resource git_diff_tree_to_tree(repo, old_tree, new_tree, opts) |
| 12 | +*/ |
| 13 | +PHP_FUNCTION(git_diff_tree_to_tree) |
| 14 | +{ |
| 15 | +} |
| 16 | + |
| 17 | +/* {{{ proto resource git_diff_tree_to_index(repo, old_tree, index, opts) |
| 18 | +*/ |
| 19 | +PHP_FUNCTION(git_diff_tree_to_index) |
| 20 | +{ |
| 21 | +} |
| 22 | + |
| 23 | +/* {{{ proto resource git_diff_index_to_workdir(repo, index, opts) |
| 24 | +*/ |
| 25 | +PHP_FUNCTION(git_diff_index_to_workdir) |
| 26 | +{ |
| 27 | +} |
| 28 | + |
| 29 | +/* {{{ proto resource git_diff_tree_to_workdir(repo, old_tree, opts) |
| 30 | +*/ |
| 31 | +PHP_FUNCTION(git_diff_tree_to_workdir) |
| 32 | +{ |
| 33 | +} |
| 34 | + |
| 35 | +/* {{{ proto resource git_diff_tree_to_workdir_with_index(repo, old_tree, opts) |
| 36 | +*/ |
| 37 | +PHP_FUNCTION(git_diff_tree_to_workdir_with_index) |
| 38 | +{ |
| 39 | +} |
| 40 | + |
| 41 | +/* {{{ proto long git_diff_merge(onto, from) |
| 42 | +*/ |
| 43 | +PHP_FUNCTION(git_diff_merge) |
| 44 | +{ |
| 45 | +} |
| 46 | + |
| 47 | +/* {{{ proto long git_diff_find_similar(diff, options) |
| 48 | +*/ |
| 49 | +PHP_FUNCTION(git_diff_find_similar) |
| 50 | +{ |
| 51 | +} |
| 52 | + |
| 53 | +/* {{{ proto long git_diff_options_init(options, version) |
| 54 | +*/ |
| 55 | +PHP_FUNCTION(git_diff_options_init) |
| 56 | +{ |
| 57 | +} |
| 58 | + |
| 59 | +/* {{{ proto resource git_diff_num_deltas(diff) |
| 60 | +*/ |
| 61 | +PHP_FUNCTION(git_diff_num_deltas) |
| 62 | +{ |
| 63 | +} |
| 64 | + |
| 65 | +/* {{{ proto resource git_diff_num_deltas_of_type(diff, type) |
| 66 | +*/ |
| 67 | +PHP_FUNCTION(git_diff_num_deltas_of_type) |
| 68 | +{ |
| 69 | +} |
| 70 | + |
| 71 | +/* {{{ proto resource git_diff_get_delta(diff, idx) |
| 72 | +*/ |
| 73 | +PHP_FUNCTION(git_diff_get_delta) |
| 74 | +{ |
| 75 | +} |
| 76 | + |
| 77 | +/* {{{ proto long git_diff_is_sorted_icase(diff) |
| 78 | +*/ |
| 79 | +PHP_FUNCTION(git_diff_is_sorted_icase) |
| 80 | +{ |
| 81 | +} |
| 82 | + |
| 83 | +/* {{{ proto long git_diff_foreach(diff, file_cb, hunk_cb, line_cb, payload) |
| 84 | +*/ |
| 85 | +PHP_FUNCTION(git_diff_foreach) |
| 86 | +{ |
| 87 | +} |
| 88 | + |
| 89 | +/* {{{ proto resource git_diff_status_char(status) |
| 90 | +*/ |
| 91 | +PHP_FUNCTION(git_diff_status_char) |
| 92 | +{ |
| 93 | +} |
| 94 | + |
| 95 | +/* {{{ proto long git_diff_print(diff, format, print_cb, payload) |
| 96 | +*/ |
| 97 | +PHP_FUNCTION(git_diff_print) |
| 98 | +{ |
| 99 | +} |
| 100 | + |
| 101 | +/* {{{ proto long git_diff_blobs(old_blob, old_as_path, new_blob, new_as_path, options, file_cb, hunk_cb, line_cb, payload) |
| 102 | +*/ |
| 103 | +PHP_FUNCTION(git_diff_blobs) |
| 104 | +{ |
| 105 | +} |
| 106 | + |
| 107 | +/* {{{ proto long git_diff_blob_to_buffer(old_blob, old_as_path, buffer, buffer_len, buffer_as_path, options, file_cb, hunk_cb, line_cb, payload) |
| 108 | +*/ |
| 109 | +PHP_FUNCTION(git_diff_blob_to_buffer) |
| 110 | +{ |
| 111 | +} |
| 112 | + |
0 commit comments