1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-01 00:19:27 +02:00

Forgot to add new file

This commit is contained in:
Leland Lucius 2020-04-18 02:05:16 -05:00
parent 18cbc2e574
commit 4475dee373

22
src/menus/WindowMenus.h Normal file
View File

@ -0,0 +1,22 @@
#include "../Audacity.h"
#include "../commands/CommandManager.h"
#ifdef __WXMAC__
/// Namespace for functions for window management (mac only?)
namespace WindowActions {
// Range of assigned menu IDs
static const wxWindowID ID_BASE = 30000;
static const wxWindowID ID_LAST = 30999;
// Exported helper functions
void Refresh();
};
#else
// Not WXMAC.
#endif