This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

fstream calls in cygwin dll



 Thanks to Mummit Khan for both his response and voluminous docs! 

I've been successfull in calling my cygwin dll based upon gnu plotutils by
visual basic 6.0, and i'm that much closer to convincing my company that
integrating unix apps/library/os's in our microsoft shop is a *GOOD* thing.

however, the dll brings down the app following any call to cout, cerr, cin or
my iofstream objects. I can go ahead and use fopen, fread and the like, but is
this a problem that's been solved already?

**CODE SNIPPET **
-----------------

      //this works \/       

        FILE *testh = fopen("/aviscos2.log", "w");
        fprintf(testh, "testing... i don't think the c++ i/o works.\n");
        fprintf(testh, "got these params (%s, %s, %s)\n", infile, outfile,
papersize);
        fclose(testh);

       //this does not!
        // Trace::logfile << "just getting started." << endl;

//        Trace t("convert_ps");

        /* Initialize */

        HPEnv env;

        /* Open Files */

        ifstream hpglfile(infile);
        FILE * psfile = fopen(outfile, "w");
-------
*END CODE SNIPPET***


____________________________________________________________________
Get free email and a permanent address at http://www.netaddress.com/?N=1

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]