TWR
T windows api WRapper
 All Classes Functions
TwrMenu.h
1 #ifndef TWRMENU_H
2 #define TWRMENU_H
3 
4 class TwrMenu {
5 private:
6  HMENU menuHandle;
7 public:
8  TwrMenu(HWND wnd);
9  void CheckMenuItem(int id,bool checked);
10  bool isChecked(int item);
11 };
12 
13 
14 #endif