X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=mlt%2B%2B%2Fsrc%2FMltFactory.cpp;h=f32018a46e3458f4f51ab7dcf7d09bcb669aa6d3;hb=47fb1506a99bae1c9cb90f313176f9dab58d5854;hp=51aa7f96f7e3bc7a6d2d28f25383020e79fbba06;hpb=bad3af93817e3f922c832f9ff1e2cecf4e8aa9d4;p=melted diff --git a/mlt++/src/MltFactory.cpp b/mlt++/src/MltFactory.cpp index 51aa7f9..f32018a 100644 --- a/mlt++/src/MltFactory.cpp +++ b/mlt++/src/MltFactory.cpp @@ -55,6 +55,18 @@ Consumer *Factory::consumer( char *id, char *arg ) return new Consumer( id, arg ); } +#ifdef WIN32 +char *Factory::getenv( const char *name ) +{ + return mlt_getenv( name ); +} + +int Factory::setenv( const char *name, const char *value ) +{ + return mlt_setenv( name, value ); +} +#endif + void Factory::close( ) { mlt_factory_close( );