blob: 50df5ca31ccab5e6ee57c47fa26a580ed9fae97f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef NULLSOFT_WEBDEV_PLUGIN_MENU_HEADER
#define NULLSOFT_WEBDEV_PLUGIN_MENU_HEADER
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif
#include <wtypes.h>
class ifc_omservice;
#define MENU_SERVICECONTEXT 0
HMENU Menu_GetMenu(UINT menuKind, ifc_omservice *service);
BOOL Menu_ReleaseMenu(HMENU hMenu, UINT menuKind);
#endif //NULLSOFT_WEBDEV_PLUGIN_MENU_HEADER
|