forked from RogerGee/php-git2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
trace.h
39 lines (33 loc) · 740 Bytes
/
trace.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* trace.h
*
* Copyright (C) Roger P. Gee
*/
#ifndef PHPGIT2_TRACE_H
#define PHPGIT2_TRACE_H
namespace php_git2
{
}
static constexpr auto ZIF_GIT_TRACE_SET = zif_php_git2_function<
php_git2::func_wrapper<
int,
git_trace_level_t,
git_trace_callback>::func<git_trace_set>,
php_git2::local_pack<
php_git2::php_long_cast<git_trace_level_t>,
php_git2::php_callback_handler<php_git2::trace_callback>
>,
-1,
php_git2::sequence<0>,
php_git2::sequence<0,1>
>;
#define GIT_TRACE_FE \
PHP_GIT2_FE(git_trace_set,ZIF_GIT_TRACE_SET,NULL)
#endif
/*
* Local Variables:
* mode:c++
* indent-tabs-mode:nil
* tab-width:4
* End:
*/