blob: bb991a61fa32b31e686d80084a7e2419dded264e (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include "util.h"
/* Platform-specific functionality for macOS */
void setupApplication_MacOS (void);
void insertMenuItems_MacOS (const char *menuLabel, const iMenuItem *items, size_t count);
void handleCommand_MacOS (const char *cmd);
|