I'm using pure C with Windows SDK in my projects, but now I need to deal with DVR's camera, which the driver was made in MFC 6.0.

I can switch to C++ at any time (I'm already using it in some modules), but in this camera SDK I need CWnd's object.

//Initialize is a function, which initializes the related SDK instance.
Void Initialize(CWnd* pParent)

Can I create a fake CWnd, without loading the MFC stuff into MFC project, but just using my plain CreateWindowEx() ?

Thank you.

link|improve this question

Do you have the source for the library? You might be able to fake it. If the only thing it does is get CWnd::m_hWnd or call Cwnd::GetSafeHwnd, you could make a dummy Cwnd class that returns your actual HWND. But you might be going down the rabbit hole if it uses a nested mess of Cwnd's member functions... – CoreyStup Jul 1 '11 at 23:46
No, I don't have. But I know this library uses Cwnd to create threads (for cameras) associated with this HWND. But I can try! How can I create this dummy CWnd? – Daniel Koch Jul 2 '11 at 14:31
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.