2019-12-12 23:37:40 -05:00
|
|
|
#include "PLMenus.h"
|
2019-11-11 00:11:59 -05:00
|
|
|
|
|
|
|
|
MenuHandle GetMenu(int resID)
|
|
|
|
|
{
|
|
|
|
|
PL_NotYetImplemented();
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AppendResMenu(MenuHandle menu, UInt32 resType)
|
|
|
|
|
{
|
|
|
|
|
PL_NotYetImplemented();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void InsertMenu(MenuHandle menu, int index)
|
|
|
|
|
{
|
|
|
|
|
PL_NotYetImplemented();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DeleteMenu(int menuID)
|
|
|
|
|
{
|
|
|
|
|
PL_NotYetImplemented();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DrawMenuBar()
|
|
|
|
|
{
|
|
|
|
|
PL_NotYetImplemented();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HiliteMenu(int menu)
|
|
|
|
|
{
|
|
|
|
|
PL_NotYetImplemented();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EnableMenuItem(MenuHandle menu, int index)
|
|
|
|
|
{
|
|
|
|
|
PL_NotYetImplemented();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DisableMenuItem(MenuHandle menu, int index)
|
|
|
|
|
{
|
|
|
|
|
PL_NotYetImplemented();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CheckMenuItem(MenuHandle menu, int index, Boolean checked)
|
|
|
|
|
{
|
|
|
|
|
PL_NotYetImplemented();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SetMenuItemText(MenuHandle menu, int index, const PLPasStr &text)
|
|
|
|
|
{
|
|
|
|
|
PL_NotYetImplemented();
|
|
|
|
|
}
|