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
|
/*******************************************************************
* File automatically generated by rebuild_wrappers.py (v2.4.0.21) *
*******************************************************************/
#ifndef __wrappedlibncurses6TYPES_H_
#define __wrappedlibncurses6TYPES_H_
#ifndef LIBNAME
#error You should only #include this file inside a wrapped*.c file
#endif
#ifndef ADDED_FUNCTIONS
#define ADDED_FUNCTIONS()
#endif
typedef void* (*pFv_t)(void);
typedef int32_t (*iFpV_t)(void*, ...);
typedef int32_t (*iFppV_t)(void*, void*, ...);
typedef int32_t (*iFppA_t)(void*, void*, va_list);
typedef int32_t (*iFiipV_t)(int32_t, int32_t, void*, ...);
typedef int32_t (*iFpiipV_t)(void*, int32_t, int32_t, void*, ...);
#define SUPER() ADDED_FUNCTIONS() \
GO(initscr, pFv_t) \
GO(printw, iFpV_t) \
GO(wprintw, iFppV_t) \
GO(vwprintw, iFppA_t) \
GO(mvprintw, iFiipV_t) \
GO(mvwprintw, iFpiipV_t)
#endif // __wrappedlibncurses6TYPES_H_
|