RE:FILE *fp CINT -> Pre-compiled

Masaharu Goto (MXJ02154@niftyserve.or.jp)
Sat, 25 Apr 1998 08:16:00 +0900


Valery,

I think you are concerned about the pointer 'fl'. It is legal.
Pointer to fundamental types and standard C structs, such as FILE , tm,
are inter-changable between interpreter and precompiled function.

Masaharu Goto

>Is it legal
>
>root [1] FILE *fl = fopen("testStreame.cxx", "w");
>root [2] StructStreamer("vectors_st",0,fl)
>
> where StructStreamer is pre-compiled function ?
>
> Valery