mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 02:25:34 +00:00
Updating windowless plugin sdk sample to beep on keyboard events, not part of the build
This commit is contained in:
parent
f49d4f3c4e
commit
1289baa0b5
@ -139,6 +139,11 @@ uint16 nsPluginInstance::HandleEvent(void* aEvent)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case WM_KEYDOWN:
|
||||||
|
{
|
||||||
|
Beep(1000,100);
|
||||||
|
break;
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user