Here is the error:
Error 2 error LNK2019: unresolved external symbol “protected:
__thiscall CSourceSeeking::CSourceSeeking(char const *,struct IUnknown *,long *,class CCritSec *)” (??
0CSourceSeeking@@IAE@PBDPAUIUnknown@@PAJPAVCCritSec@@@Z) referenced in
function “public: __thiscall CPushPin::CPushPin(long *,class
CSource *)”
(??0CPushPin@@QAE@PAJPAVCSource@@@Z) C:\Users\x\Desktop\PushSource\PushFilter.obj > PushSource
Here are my libs:
gdiplus.lib strmbasd.lib msvcrtd.lib winmm.lib odbc32.lib odbccp32.lib
What lib is CSourceSeeking in?
You have to create
Strmbase.lib/Strmbased.libyourself, apparently. Make sure it’s built for your target (i.e. if your program is 32-bit, make sure it’s built as a 32-bit library; same for 64-bit).