Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MrPowerGamerBR/ef0f7bcc7dc42d362ca7da9da9951774 to your computer and use it in GitHub Desktop.
Save MrPowerGamerBR/ef0f7bcc7dc42d362ca7da9da9951774 to your computer and use it in GitHub Desktop.
Fix vegas 9.0 "An necessary operation is not implemented" in Wine (hacky)
From 44fb564431393c4f5f86046d083ec0cd09b9dd54 Mon Sep 17 00:00:00 2001
From: MrPowerGamerBR <[email protected]>
Date: Thu, 17 Jul 2025 01:04:46 -0300
Subject: [PATCH] Fix vegas 9.0 "An necessary operation is not implemented"
---
dlls/wiaservc/wiadevmgr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/wiaservc/wiadevmgr.c b/dlls/wiaservc/wiadevmgr.c
index e0156b7f5a2..d359f4e6c37 100644
--- a/dlls/wiaservc/wiadevmgr.c
+++ b/dlls/wiaservc/wiadevmgr.c
@@ -127,7 +127,7 @@ static HRESULT WINAPI enumwiadevinfo_GetCount(IEnumWIA_DEV_INFO *iface, ULONG *c
FIXME("(%p, %p): stub\n", This, count);
*count = 0;
- return E_NOTIMPL;
+ return S_OK;
}
static const IEnumWIA_DEV_INFOVtbl EnumWIA_DEV_INFOVtbl =
--
2.50.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment