/xbmc/osx/DarwinUtils.h
https://gitlab.com/stormrev/xbmca10 · C Header · 48 lines · 23 code · 4 blank · 21 comment · 0 complexity · d6a29dd1dc4c62eb9071a6e3f2489a44 MD5 · raw file
- /*
- * Copyright (C) 2010-2012 Team XBMC
- * http://www.xbmc.org
- *
- * This Program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
- * any later version.
- *
- * This Program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with XBMC; see the file COPYING. If not, see
- * <http://www.gnu.org/licenses/>.
- *
- */
- #ifndef _DARWIN_UTILS_H_
- #define _DARWIN_UTILS_H_
- #include <string>
- // We forward declare CFStringRef in order to avoid
- // pulling in tons of Objective-C headers.
- struct __CFString;
- typedef const struct __CFString * CFStringRef;
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- bool DarwinIsAppleTV2(void);
- bool DarwinHasRetina(void);
- const char *GetDarwinVersionString(void);
- float GetIOSVersion(void);
- int GetDarwinFrameworkPath(bool forPython, char* path, uint32_t *pathsize);
- int GetDarwinExecutablePath(char* path, uint32_t *pathsize);
- bool DarwinHasVideoToolboxDecoder(void);
- int DarwinBatteryLevel(void);
- void DarwinSetScheduling(int message);
- bool DarwinCFStringRefToString(CFStringRef source, std::string& destination);
- #ifdef __cplusplus
- }
- #endif
- #endif