blob: bd33edcc587e60c50fa263049cccbee4f42f9a8c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef NULLSOFT_NOWPLAYING_PLUGIN_MENU_HEADER
#define NULLSOFT_NOWPLAYING_PLUGIN_MENU_HEADER
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif
#include <wtypes.h>
#define MENU_NAVIGATIONCONTEXT 0
HMENU Menu_GetMenu(UINT menuKind);
BOOL Menu_ReleaseMenu(HMENU hMenu, UINT menuKind);
#endif //NULLSOFT_NOWPLAYING_PLUGIN_MENU_HEADER
|