My call to CoCreateInstance is returning me CO_E_NOTINITIALIZED
(800401F0),
which is not a documented return value.
Does any one know what this means?
My actual call is as follows:
HRESULT hr;
IMediaControl *pMC = NULL;
// We need to use a codec filter via Filter Graph Manager
// Instantiate the Filter Graph Manager first
hr = CoCreateInstance( (REFCLSID)CLSID_FilterGraph, // class identifier
for the FGM
NULL,// pointer to outer iUnkown (NULL ; FG is not part
of an aggregate
CLSCTX_INPROC,// code runs in the same process as
the caller
IID_IMediaControl,
(void **)&pMC);
thanks,
Sandhya K Sringar (sand...@ogenic.com.au)
Sandhya Sringar wrote in message <6ome6e$4m8$1...@news.iinet.net.au>...