mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[NEWDEV] Set the CM_PROB_FAILED_INSTALL problem code on failed install
CORE-17527
This commit is contained in:
parent
1ff3d1c395
commit
32428a39ed
1 changed files with 4 additions and 1 deletions
|
@ -104,7 +104,10 @@ SetFailedInstall(
|
|||
(PBYTE)pszUnknownGuid,
|
||||
(wcslen(pszUnknownGuid) + 1) * sizeof(WCHAR));
|
||||
|
||||
/* FIXME: Set device problem code 28 (CM_PROB_FAILED_INSTALL) */
|
||||
/* Set device problem code CM_PROB_FAILED_INSTALL */
|
||||
CM_Set_DevNode_Problem(DevInfoData->DevInst,
|
||||
CM_PROB_FAILED_INSTALL,
|
||||
CM_SET_DEVNODE_PROBLEM_OVERRIDE);
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
|
|
Loading…
Reference in a new issue