in reply to Problem calling C language fopen() in win32

You probably know this since you mention it. Check the C compiler version your perl was built with. If it differs from your VC6, that alone may cause the problem. If you are unable to get a matching compiler, you could build a new perl with the compiler you have. That would at least allow you to check.

Is the fopen() call in a place where you can invoke perl's builtin sysopen instead?

After Compline,
Zaxo

  • Comment on Re: Problem calling C language fopen() in win32

Replies are listed 'Best First'.
Re: Re: Problem calling C language fopen() in win32
by davidF (Initiate) on May 02, 2004 at 20:15 UTC
    Actually, I tried compiling a new Perl, which worked . . . but fopen still didn't :-( I will loook at sysopen(). Thanks.