1// 2// CocoaBarItems.h 3// PPSSPP 4// 5// Created by Serena on 06/02/2023. 6// 7 8#pragma once 9 10#ifdef __cplusplus 11extern "C" { 12#endif 13 14void initializeOSXExtras(); 15 16/* Yes it is awkward to put this here but I don't feel like making an entire file for 2 functions */ 17/* Prefixing with `OSX` to avoid any possible header collisions in the future */ 18void OSXShowInFinder(const char *path); 19void OSXOpenURL(const char *url); 20 21#ifdef __cplusplus 22} 23#endif 24 25