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

git-svn-id: svn://10.0.0.236/trunk@111108 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
peterlubczynski%netscape.com
2001-12-27 18:46:36 +00:00
parent c35422c861
commit 559dfa0298

View File

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