Author: dinmithdinmith Date: Jun 13, 2008 08:00
Hi Brian ..
Well .. my dll is in debug mode
Copied the code of the lib inside my new dll.
Now the problems boils down to the call of my wrapper dll.
i get exception saying - Access violation reading location 0x00000000
in the
dllmain() of my wrapper dll whenever it gets called.
here is the code frag ..
=====================================================
struct cInfo
{
int nCamN;
IBaseFilter *pCap;
IBaseFilter *pSG;
CoSGCB *pSGCB;
dsCallBack *pCB;
CamInfo () : pCap(NULL), pSG(NULL), pSGCB(NULL), pCB(NULL) {};
};
static __declspec( thread ) vector *pinfo;
|