|
Kodi Documentation 18.0
Kodi is an open source media player and entertainment hub.
|
#include "DeviceResources.h"#include "DirectXHelper.h"#include "RenderContext.h"#include "guilib/GUIComponent.h"#include "guilib/GUIWindowManager.h"#include "windowing/GraphicContext.h"#include "messaging/ApplicationMessenger.h"#include "platform/win32/CharsetConverter.h"#include "ServiceBroker.h"#include "settings/AdvancedSettings.h"#include "settings/SettingsComponent.h"#include "utils/log.h"#include "utils/SystemInfo.h"Namespaces | |
| namespace | winrt |
Macros | |
| #define | breakOnDebug |
| #define | LOG_HR(hr) CLog::LogF(LOGERROR, "function call at line %d ends with error: %s", __LINE__, DX::GetErrorDescription(hr).c_str()); |
| #define | CHECK_ERR() if (FAILED(hr)) { LOG_HR(hr); breakOnDebug; return; } |
| #define | RETURN_ERR(ret) if (FAILED(hr)) { LOG_HR(hr); breakOnDebug; return (##ret); } |
| #define breakOnDebug |
| #define CHECK_ERR | ( | ) | if (FAILED(hr)) { LOG_HR(hr); breakOnDebug; return; } |
| #define LOG_HR | ( | hr | ) | CLog::LogF(LOGERROR, "function call at line %d ends with error: %s", __LINE__, DX::GetErrorDescription(hr).c_str()); |
| #define RETURN_ERR | ( | ret | ) | if (FAILED(hr)) { LOG_HR(hr); breakOnDebug; return (##ret); } |