acledit: Add a stub for FMExtensionProcW.
This commit is contained in:
parent
64359c2432
commit
2eac48f594
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue