]> git.sesse.net Git - vlc/blob - modules/gui/minimal_macosx/misc.h
minimal_macosX: relicense to LGPL
[vlc] / modules / gui / minimal_macosx / misc.h
1 /*****************************************************************************
2  * misc.h: custom code
3  *****************************************************************************
4  * Copyright (C) 2012 VLC authors and VideoLAN
5  * $Id$
6  *
7  * Authors: Felix Paul Kühne <fkuehne at videolan dot org>
8  *          David Fuhrmann <david dot fuhrmann at googlemail dot com>
9  *          Pierre d'Herbemont <pdherbemont # videolan dot org>
10  *
11  * This program is free software; you can redistribute it and/or modify it
12  * under the terms of the GNU Lesser General Public License as published by
13  * the Free Software Foundation; either version 2.1 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * along with this program; if not, write to the Free Software Foundation,
23  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #import <Cocoa/Cocoa.h>
27
28 @interface NSScreen (VLCAdditions)
29 - (BOOL)hasMenuBar;
30 - (BOOL)hasDock;
31 - (CGDirectDisplayID)displayID;
32 @end