Archive-Chm
view release on metacpan or search on metacpan
/********************************************************************************
* *
* SIMULATED STATIC MEMBERS WITH GETTERS/SETTERS *
* *
********************************************************************************/
/*-------------------------------------------------------------------------------
// Function used to encapsulate the "global" outfile needed for the extract-
// callback function. It can set the outfile or get it (if the parameter is NULL).
// This function is needed so that we don't make outfile global and cause problems
// with multithreading (i.e. polluting the namespace).
//------------------------------------------------------------------------------*/
static FILE* _set_outfile(FILE *newfile)
{
static FILE* out = NULL;
if (newfile)
out = newfile;
return out;
}
( run in 1.023 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )