RE:Re: SUN5V(vme master controller)+Sola

Masaharu Goto (MXJ02154@nifty.ne.jp)
Wed, 28 Oct 1998 10:20:00 +0900


Hi,

>this strange behaviour is becouse of these few lines:
>
>#ifdef __cplusplus
>extern "C" {
>#endif
>
>#ifdef __cplusplus
>}
>#endif

Another way to workaround this problem is as follows

#if (!defined(__CINT__)) && defined(__cplusplus)
extern "C" {
#endif

#if (!defined(__CINT__)) && defined(__cplusplus)
}
#endif

Masaharu Goto