CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/SDL/CocoaBarItems.h
Views: 1401
1
//
2
// CocoaBarItems.h
3
// PPSSPP
4
//
5
// Created by Serena on 06/02/2023.
6
//
7
8
#pragma once
9
10
#ifdef __cplusplus
11
extern "C" {
12
#endif
13
14
void 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 */
18
void OSXShowInFinder(const char *path);
19
void OSXOpenURL(const char *url);
20
21
#ifdef __cplusplus
22
}
23
#endif
24
25