// CtlPPG.cpp より
BOOL AFXAPI _AfxIsRadioButton(HWND hWnd)
{
DWORD dwButtonStyle = GetWindowLong(hWnd, GWL_STYLE) & 0x0000000FL;
return ((dwButtonStyle == BS_RADIOBUTTON) ||
(dwButtonStyle == BS_AUTORADIOBUTTON));
}
BOOL AFXAPI _AfxIsRadioButton(HWND hWnd)
{
DWORD dwButtonStyle = GetWindowLong(hWnd, GWL_STYLE) & 0x0000000FL;
return ((dwButtonStyle == BS_RADIOBUTTON) ||
(dwButtonStyle == BS_AUTORADIOBUTTON));
}