Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
48
Src/Plugins/Library/ml_devices/local_menu.h
Normal file
48
Src/Plugins/Library/ml_devices/local_menu.h
Normal file
|
@ -0,0 +1,48 @@
|
|||
#ifndef _NULLSOFT_WINAMP_ML_DEVICES_MENU_HEADER
|
||||
#define _NULLSOFT_WINAMP_ML_DEVICES_MENU_HEADER
|
||||
|
||||
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
#include <wtypes.h>
|
||||
|
||||
int
|
||||
Menu_TrackSkinnedPopup(HMENU menu,
|
||||
unsigned int flags,
|
||||
int x,
|
||||
int y,
|
||||
HWND hwnd,
|
||||
LPTPMPARAMS lptpm);
|
||||
|
||||
unsigned int
|
||||
Menu_InsertDeviceItems(HMENU menu,
|
||||
int position,
|
||||
unsigned int baseId,
|
||||
ifc_device *device,
|
||||
DeviceCommandContext context);
|
||||
|
||||
unsigned int
|
||||
Menu_FreeItemData(HMENU menu,
|
||||
unsigned int start,
|
||||
int count);
|
||||
|
||||
ULONG_PTR
|
||||
Menu_GetItemData(HMENU menu,
|
||||
unsigned int item,
|
||||
BOOL byPosition);
|
||||
|
||||
|
||||
typedef BOOL (*Menu_FindItemByDataCb)(ULONG_PTR param, void *user);
|
||||
|
||||
unsigned int
|
||||
Menu_FindItemByData(HMENU menu,
|
||||
Menu_FindItemByDataCb callback,
|
||||
void *user);
|
||||
|
||||
unsigned int
|
||||
Menu_FindItemByAnsiStringData(HMENU menu,
|
||||
const char *string);
|
||||
|
||||
|
||||
#endif //_NULLSOFT_WINAMP_ML_DEVICES_MENU_HEADER
|
Loading…
Add table
Add a link
Reference in a new issue