mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-17 01:19:29 +08:00
24 lines
356 B
C
24 lines
356 B
C
//
|
|
// Created by Lea Anthony on 12/1/21.
|
|
//
|
|
|
|
#ifndef TRAYMENU_DARWIN_H
|
|
#define TRAYMENU_DARWIN_H
|
|
|
|
#include "menu_darwin.h"
|
|
|
|
typedef struct {
|
|
|
|
const char *label;
|
|
const char *icon;
|
|
const char *trayID;
|
|
|
|
Menu* menu;
|
|
|
|
} TrayMenu;
|
|
|
|
TrayMenu* NewTrayMenu(const char *trayJSON);
|
|
void DeleteTrayMenu(TrayMenu* trayMenu);
|
|
|
|
#endif //TRAYMENU_DARWIN_H
|