- Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtrace.h
41 lines (34 loc) · 743 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
40
41
/*
* trace.h
*
* Copyright (C) Roger P. Gee
*/
#ifndef PHPGIT2_TRACE_H
#definePHPGIT2_TRACE_H
#include"stubs/trace_arginfo.h"
namespacephp_git2
{
}
staticconstexprauto 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>
>;
#defineGIT_TRACE_FE \
PHP_GIT2_FE(git_trace_set)
#endif
/*
* Local Variables:
* mode:c++
* indent-tabs-mode:nil
* tab-width:4
* End:
*/