>after running rootcint stub.C -I./include -I./.. myfile.c i got
>#error win32api.dll is not ready. Run 'setup.bat' in
>%CCINTSYSDIR%\lib\win32api directory if you use WinNT/95.
>any clue ???
I think myfile.c has a line
#include <windows.h>
in it. Cint supports Win32 API subset in the %CINTSYSDIR%\include\windows.h
and it is precompiled in %CINTSYSDIR%\include\win32api.dll. This component is
an optional library for WindowsNT/9x. In other platforms, it will not work.
A user must build it from the source in %CINTSYSDIR%\lib\win32api directory.
Please read readme.txt file there. You need Visual C++.
Masaharu Goto