mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
18 lines
422 B
C++
18 lines
422 B
C++
#pragma once
|
|
#ifndef __PL_MENUS_H__
|
|
#define __PL_MENUS_H__
|
|
|
|
#include "PLCore.h"
|
|
|
|
class PLPasStr;
|
|
|
|
MenuHandle GetMenu(int resID);
|
|
void InsertMenu(MenuHandle menu, int beforeID);
|
|
|
|
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
|