Trapping windows messages in a native DLL

  • Thread starter Thread starter lagu2653
  • Start date Start date
L

lagu2653

How do you trap windows messages in a native DLL?. I know how to do it in a
console application.exe but not in a DLL.
 
lagu2653 said:
How do you trap windows messages in a native DLL?. I know how to do it in a
console application.exe but not in a DLL.

lagu:

As someone in the forums pointed out to you, you cannot trap messages in a
console application because it has no message pump.

BTW, this is not the correct newsgroup for native C++ questions. Use

microsoft.public.vc.language
 
Back
Top