mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
f87bfda8d3
* 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
24 lines
446 B
C
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
|