|
From: Tim B. <tim...@gm...> - 2010-02-18 09:34:46
|
Hi,
it seems that the FUSE header files (fuse_opt.h for example) contain
C-only styled struct member initializations.
Example:
#define FUSE_OPT_END { .templ = NULL }
Is it possible to remove these type of initializations, so that the
FUSE header files become compliant with the C++ specifications? It
seems pointless to include the
#ifdef __cplusplus
extern "C" {
#endif
constructions, if some of the other defines are not C++ compliant anyway.
Anyone?
Kind regards,
Tim.
|