mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-10 22:19:46 +08:00
18 lines
313 B
C
18 lines
313 B
C
//
|
|
// Created by Lea Anthony on 12/1/21.
|
|
//
|
|
|
|
#include "common.h"
|
|
#include "traymenu_darwin.h"
|
|
|
|
|
|
TrayMenu* NewTrayMenu(const char* menuJSON) {
|
|
TrayMenu* result = malloc(sizeof(TrayMenu));
|
|
|
|
return result;
|
|
}
|
|
|
|
void DeleteTrayMenu(TrayMenu* trayMenu) {
|
|
// Free the tray menu memory
|
|
MEMFREE(trayMenu);
|
|
} |