Searched defs:Registry (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/
H A DVBoxMPVModes.cpp173 VBOXMPCMNREGISTRY Registry; local
176 rc = VBoxMPCmnRegInit(pExt, &Registry);
182 rc = VBoxMPCmnRegSetDword(Registry, L"CustomXRes", pResolution->cx);
184 rc = VBoxMPCmnRegSetDword(Registry, L"CustomYRes", pResolution->cy);
186 rc = VBoxMPCmnRegSetDword(Registry, L"CustomBPP", 32); /* <- just in case for older driver usage */
193 rc = VBoxMPCmnRegSetDword(Registry, keyname, pResolution->cx);
196 rc = VBoxMPCmnRegSetDword(Registry, keyname, pResolution->cy);
199 rc = VBoxMPCmnRegSetDword(Registry, keyname, 32); /* <- just in case for older driver usage */
203 rc = VBoxMPCmnRegFini(Registry);
312 VBOXMPCMNREGISTRY Registry; local
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Video/mp/common/
H A DVBoxMPVidModes.cpp129 VBOXMPCMNREGISTRY Registry; local
135 rc = VBoxMPCmnRegInit(pExt, &Registry);
153 rc = VBoxMPCmnRegQueryDword(Registry, L"CustomXRes", &CustomXRes);
155 rc = VBoxMPCmnRegQueryDword(Registry, L"CustomYRes", &CustomYRes);
157 rc = VBoxMPCmnRegQueryDword(Registry, L"CustomBPP", &CustomBPP);
164 rc = VBoxMPCmnRegQueryDword(Registry, keyname, &CustomXRes);
167 rc = VBoxMPCmnRegQueryDword(Registry, keyname, &CustomYRes);
170 rc = VBoxMPCmnRegQueryDword(Registry, keyname, &CustomBPP);
198 rc = VBoxMPCmnRegFini(Registry);
393 VBOXMPCMNREGISTRY Registry; local
688 VBOXMPCMNREGISTRY Registry; local
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Video/mp/xpdm/
H A DVBoxMPIOCTL.cpp625 VBOXMPCMNREGISTRY Registry; local
627 int rc = VBoxMPCmnRegInit(pExt, &Registry);
633 rc = VBoxMPCmnRegQueryDword(Registry, L"VBoxVideoFlags", &u32Flags);
640 LOG(("Registry flags 0x%08X", u32Flags));
645 rc = VBoxMPCmnRegFini(Registry);

Completed in 46 milliseconds