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.