Files
Aerofoil/PortabilityLayer/PLMenus.h

18 lines
422 B
C
Raw Normal View History

2019-11-11 00:11:59 -05:00
#pragma once
#ifndef __PL_MENUS_H__
#define __PL_MENUS_H__
#include "PLCore.h"
class PLPasStr;
MenuHandle GetMenu(int resID);
2019-12-21 18:40:17 -05:00
void InsertMenu(MenuHandle menu, int beforeID);
2019-11-11 00:11:59 -05:00
void EnableMenuItem(MenuHandle menu, int index);
void DisableMenuItem(MenuHandle menu, int index);
void CheckMenuItem(MenuHandle menu, int index, Boolean checked);
void SetMenuItemText(MenuHandle menu, int index, const PLPasStr &text);
#endif