File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -8,21 +8,18 @@ cdef extern from *:
88
99 ctypedef int32_t (* VaListFnPtr)(int32_t count, ...);
1010
11- ctypedef int32_t (* VaListFnPtr2)(int32_t count);
11+ ctypedef int32_t (* VaListFnPtr2)(int32_t count, ... );
1212
1313 cdef struct Interface_______i32_______i32_______va_list:
1414 int32_t (* fn1)(int32_t count, ...);
1515
16- cdef struct Interface_______i32_______i32:
17- int32_t (* fn1)(int32_t count);
18-
1916 int32_t va_list_test(int32_t count, ...);
2017
2118 int32_t va_list_test2(int32_t count, ...);
2219
2320 void va_list_fn_ptrs(int32_t (* fn1)(int32_t count, ...),
24- int32_t (* fn2)(int32_t count),
21+ int32_t (* fn2)(int32_t count, ... ),
2522 VaListFnPtr fn3,
2623 VaListFnPtr2 fn4,
2724 Interface_______i32_______i32_______va_list fn5,
28- Interface_______i32_______i32 fn6);
25+ Interface_______i32_______i32_______va_list fn6);
You can’t perform that action at this time.
0 commit comments