diff options
author | Matthieu Herrb <matthieu@herrb.eu> | 2024-05-05 10:59:11 +0200 |
---|---|---|
committer | Matthieu Herrb <matthieu@herrb.eu> | 2024-05-05 10:59:11 +0200 |
commit | ed85f3d22352c8e469ed1e386af3926b4d63efcd (patch) | |
tree | 2162ff552f17fdd9f6c6eba479fa1f2498f99d19 /src/menus.h | |
parent | 1e866201f1ccf8fa3bb22c6f5fa723b26c86dbe1 (diff) | |
parent | 79b0987e63daff97ce9ee1dce883df13668a80c6 (diff) |
Merge remote-tracking branch 'origin/master' into obsd
Diffstat (limited to 'src/menus.h')
-rw-r--r-- | src/menus.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/menus.h b/src/menus.h index 0692a27..b30d596 100644 --- a/src/menus.h +++ b/src/menus.h @@ -57,8 +57,8 @@ in this Software without prior written authorization from The Open Group. * ***********************************************************************/ -#ifndef _MENUS_ -#define _MENUS_ +#ifndef MENUS_H +#define MENUS_H #include "twm.h" @@ -161,6 +161,7 @@ extern int MenuDepth; #define COLORMAP_DEFAULT "default" extern void InitMenus(void); +extern void InitMenusFirst(void); extern Bool AddFuncKey(char *name, int cont, int mods, int func, char *win_name, char *action); extern int CreateTitleButton(const char *name, int func, const char *action, @@ -191,4 +192,4 @@ extern void SendDeleteWindowMessage(TwmWindow *tmp, Time timestamp); extern void SendSaveYourselfMessage(TwmWindow *tmp, Time timestamp); extern void SendTakeFocusMessage(TwmWindow *tmp, Time timestamp); -#endif /* _MENUS_ */ +#endif /* MENUS_H */ |