2023-02-14 16:11:44 +00:00
|
|
|
//
|
|
|
|
// CocoaBarItems.h
|
|
|
|
// PPSSPP
|
|
|
|
//
|
|
|
|
// Created by Serena on 06/02/2023.
|
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2023-04-22 15:11:06 +00:00
|
|
|
void initializeOSXExtras();
|
2023-02-14 16:11:44 +00:00
|
|
|
|
2023-04-27 13:32:41 +00:00
|
|
|
/* 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);
|
|
|
|
|
2023-02-14 16:11:44 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|