ppsspp/SDL/CocoaBarItems.h

24 lines
446 B
C
Raw Normal View History

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
void initializeOSXExtras();
2023-02-14 16:11:44 +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