ppsspp/SDL/CocoaBarItems.h
Serena f87bfda8d3
fix open in folder on macOS, avoid spawning the open command to open URLs (#17342)
* fix open in folder on macOS, avoid spawning the open command to open URLs

* fix indent

* goober alert

* no more goober

* fix compiler failing on linux
2023-04-27 13:32:41 +00:00

24 lines
446 B
C

//
// CocoaBarItems.h
// PPSSPP
//
// Created by Serena on 06/02/2023.
//
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
void initializeOSXExtras();
/* Yes it is awkward to put this here but I don't feel like making an entire file for 2 functions */
/* Prefixing with `OSX` to avoid any possible header collisions in the future */
void OSXShowInFinder(const char *path);
void OSXOpenURL(const char *url);
#ifdef __cplusplus
}
#endif