installer: use regsvr32 to register FSD/DLL (Wix cannot register file system drivers or network provider DLL's)

This commit is contained in:
Bill Zissimopoulos
2016-04-30 17:33:25 -07:00
parent 9c11ca5bda
commit 26aadb0b72
2 changed files with 58 additions and 0 deletions

View File

@ -53,6 +53,8 @@ HRESULT WINAPI DllRegisterServer(VOID)
Result = FspNpRegister();
FspDebugLog("FspNpRegister = %ld\n", Result);
return NT_SUCCESS(Result) ? S_OK : 0x80040201/*SELFREG_E_CLASS*/;
}
@ -62,5 +64,7 @@ HRESULT WINAPI DllUnregisterServer(VOID)
Result = FspNpUnregister();
FspDebugLog("FspNpUnregister = %ld\n", Result);
return NT_SUCCESS(Result) ? S_OK : 0x80040201/*SELFREG_E_CLASS*/;
}