コード例 #1
0
LONG WINAPI Mine_RegFlushKey(HKEY a0)
{
    if (CFilterMapper2::m_pFilterMapper2 && a0 == FAKEHKEY) {
        return ERROR_SUCCESS;
    }
    return Real_RegFlushKey(a0);
}
コード例 #2
0
ファイル: vgRegTree.cpp プロジェクト: kimmyungwon/videogear
LSTATUS APIENTRY RegTree::RegFlushKey(HKEY hKey)
{
	RegPath path;
	ResolveKey(hKey, path);
	Console::GetInstance().Print(L"FlushKey: %s\n", path.ToString().c_str());

	return Real_RegFlushKey(hKey);
}