You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
649 B
C++
20 lines
649 B
C++
/*---------------------------------------------------------*\
|
|
| macutils.h |
|
|
| |
|
|
| Utility function for dockless mode in MacOS |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#ifndef MACUTILS_H
|
|
#define MACUTILS_H
|
|
|
|
class MacUtils
|
|
{
|
|
public:
|
|
static void ToggleApplicationDocklessState(bool showDock);
|
|
};
|
|
|
|
#endif // MACUTILS_H
|