acledit: Add a stub for FMExtensionProcW.

This commit is contained in:
Detlef Riekenberg 2007-10-27 19:59:16 +02:00 committed by Alexandre Julliard
parent 64359c2432
commit 2eac48f594
2 changed files with 13 additions and 1 deletions

View File

@ -2,7 +2,7 @@
2 stub EditOwnerInfo
3 stub EditPermissionInfo
4 stdcall DllMain(long long ptr)
5 stub FMExtensionProcW
5 stdcall FMExtensionProcW(long long long)
6 stub SedDiscretionaryAclEditor
7 stub SedSystemAclEditor
8 stub SedTakeOwnership

View File

@ -46,3 +46,15 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
}
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;
}