About Invoke Helper
-
Hi, I created a win32 dll and I want use InvokeHelper function in it,but when i include that function it is giving error as "Undeclared Identifier", So I tried to include it's header file AFXWIN.H,but it is not taking in it. What i need to do to use InvokeHelper function??? Please help me with your suggestions, Thank you Siddharth
-
Hi, I created a win32 dll and I want use InvokeHelper function in it,but when i include that function it is giving error as "Undeclared Identifier", So I tried to include it's header file AFXWIN.H,but it is not taking in it. What i need to do to use InvokeHelper function??? Please help me with your suggestions, Thank you Siddharth
What's your context? The docs say that InvokeHelper is part of the
COleDispatchDriver
andCWnd
classes, thus when you callInvokeHelper()
you're really calling::InvokeHelper()
, which doesn't exist in the global namespace.