mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-07-14 06:52:52 +03:00
23 lines
378 B
C++
23 lines
378 B
C++
#ifndef ECODE_MACOS_MACOS
|
|
#define ECODE_MACOS_MACOS
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void macOS_createApplicationMenus();
|
|
|
|
void macOS_enableScrollMomentum();
|
|
|
|
void macOS_removeTitleBarSeparator( void* nsWindow );
|
|
|
|
void macOS_changeTitleBarColor( void* window, double red, double green, double blue );
|
|
|
|
int macOS_isDarkModeEnabled();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|