MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / OnChar

Function OnChar

Libraries/PropertyGrid/PropertyTree.h:620–630  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

618 }
619
620 LRESULT OnChar(UINT /*uMsg*/, WPARAM wParam, LPARAM /*lParam*/, BOOL& bHandled)
621 {
622 switch( wParam ) {
623 case _T(' '):
624 // Don't want to hear nasty Windows beep sound...
625 return 0;
626 default:
627 bHandled = FALSE;
628 return 0;
629 }
630 }
631
632 LRESULT OnNavigate(UINT /*uMsg*/, WPARAM wParam, LPARAM /*lParam*/, BOOL& /*bHandled*/)
633 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected