mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
Partial implementation of DeleteMenuWrap.
This commit is contained in:
parent
56dac9118e
commit
1c088a43f7
@ -3721,6 +3721,16 @@ BOOL WINAPI SHFlushSFCacheWrap(void) {
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* @ [SHLWAPI.425]
|
||||
*/
|
||||
BOOL WINAPI DeleteMenuWrap(HMENU hmenu, UINT pos, UINT flags)
|
||||
{
|
||||
/* FIXME: This should do more than simply call DeleteMenu */
|
||||
FIXME("%p %08x %08x): semi-stub\n", hmenu, pos, flags);
|
||||
return DeleteMenu(hmenu, pos, flags);
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* @ [SHLWAPI.429]
|
||||
* FIXME I have no idea what this function does or what its arguments are.
|
||||
|
@ -422,7 +422,7 @@
|
||||
422 stdcall -noname _SHGlobalCounterCreateNamedA(str long)
|
||||
423 stdcall -noname _SHGlobalCounterCreateNamedW(wstr long)
|
||||
424 stdcall -noname _SHGlobalCounterDecrement(long)
|
||||
425 stub -noname DeleteMenuWrap
|
||||
425 stdcall -noname DeleteMenuWrap(ptr long long)
|
||||
426 stub -noname DestroyMenuWrap
|
||||
427 stub -noname TrackPopupMenuWrap
|
||||
428 stdcall @(long long long long long ptr) user32.TrackPopupMenuEx
|
||||
|
Loading…
Reference in New Issue
Block a user