Loading...
Searching...
No Matches
Go to the documentation of this file.
14#ifndef FC__GUI_PROTO_CONSTRUCTOR_H
15#define FC__GUI_PROTO_CONSTRUCTOR_H
18#define GUI_FUNC_PROTO(_type, _func, ...) \
19_type gui_##_func( __VA_ARGS__ ); \
20_type _func( __VA_ARGS__ );
22#define GUI_FUNC_PROTO(_type, _func, ...) \
23_type _func( __VA_ARGS__ );