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