00001 00007 /* License: new BSD license (see header file) */ 00008 00009 #include "NPWStdOutput.h" 00010 #include <stdio.h> 00011 00012 NPWErr NPWWriteStdOutput(NPWConstText str, NPWInt length, void *userData) 00013 { 00014 fwrite(str, 1, length, (FILE *)userData); 00015 return kNPWErrOk; 00016 }