Commit 2eac48f5 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

acledit: Add a stub for FMExtensionProcW.

parent 64359c24
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 stub EditOwnerInfo 2 stub EditOwnerInfo
3 stub EditPermissionInfo 3 stub EditPermissionInfo
4 stdcall DllMain(long long ptr) 4 stdcall DllMain(long long ptr)
5 stub FMExtensionProcW 5 stdcall FMExtensionProcW(long long long)
6 stub SedDiscretionaryAclEditor 6 stub SedDiscretionaryAclEditor
7 stub SedSystemAclEditor 7 stub SedSystemAclEditor
8 stub SedTakeOwnership 8 stub SedTakeOwnership
...@@ -46,3 +46,15 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) ...@@ -46,3 +46,15 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
} }
return TRUE; return TRUE;
} }
/***********************************************************************
* FMExtensionProcW (acledit.@)
*
*/
LONG WINAPI FMExtensionProcW(HWND hWnd, WORD wEvent, LONG lParam)
{
FIXME("%p, %d, 0x%x) stub\n", hWnd, wEvent, lParam);
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment