Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
590 B

#ifdef DESCRIPTION
This class is used to broadcast a message and optionally two parameters
to all child windows of the specified window class. The reason for using
a class is that the EnumChildProc callback function only allows one
long to be passed through -- we use the class to avoid having to declare
static variables.
#endif
#ifndef _DEF_CBROADCAST
#define _DEF_CBROADCAST
class CBroadCastChildren
{
public:
CBroadCastChildren(HWND hwnd, UINT msgOrg, WPARAM wParamOrg = 0,
LPARAM lParamOrg = 0);
UINT msg;
WPARAM wParam;
LPARAM lParam;
};
#endif // _DEF_CBROADCAST