MCPcopy Create free account
hub / github.com/Nevcairiel/LAVFilters / DbgSetModuleLevel

Function DbgSetModuleLevel

common/baseclasses/wxdebug.cpp:645–657  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

643/* Set debug levels to a given value */
644
645void WINAPI DbgSetModuleLevel(DWORD Type, DWORD Level)
646{
647 DWORD Mask = 0x01;
648
649 for (LONG lKeyPos = 0; lKeyPos < iMAXLEVELS; lKeyPos++)
650 {
651 if (Type & Mask)
652 {
653 m_Levels[lKeyPos] = Level | LOG_FORCIBLY_SET;
654 }
655 Mask <<= 1;
656 }
657}
658
659/* whether to check registry values periodically. this isn't turned
660 automatically because of the potential performance hit. */

Callers 6

CLAVAudioMethod · 0.85
CLAVVideoMethod · 0.85
InitMethod · 0.85
CLAVFDemuxerMethod · 0.85
CLAVSplitterMethod · 0.85
_DllEntryPointFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected