blob: a491e72105909514382180eeb9232341f602449a (
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, int atIndex, const iMenuItem *items, size_t count);
void handleCommand_MacOS (const char *cmd);
|