Updating windowless plugin sdk sample to beep on keyboard events, not part of the build

This commit is contained in:
peterlubczynski%netscape.com 2001-12-27 18:46:36 +00:00
parent f49d4f3c4e
commit 1289baa0b5

View File

@ -139,6 +139,11 @@ uint16 nsPluginInstance::HandleEvent(void* aEvent)
}
break;
}
case WM_KEYDOWN:
{
Beep(1000,100);
break;
}
default:
return 0;
}