This repository has been archived by the owner on May 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 92
/
Prefix.pch
43 lines (35 loc) · 1.48 KB
/
Prefix.pch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (C) 2010-2016 Pierre-Olivier Latour <[email protected]>
//
// 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 3 of the License, 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 this program. If not, see <http://www.gnu.org/licenses/>.
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#endif
#import <QuartzCore/QuartzCore.h>
#define __STORE_THUMBNAILS_IN_DATABASE__ 1
#define __DISPLAY_THUMBNAILS_IN_BACKGROUND__ 1
#ifdef __OBJC__
#import "XLFacilityMacros.h"
#define __COOLIRIS_TOOLKIT_LOGGING__
#define LOG_DEBUG(...) XLOG_DEBUG(__VA_ARGS__)
#define LOG_INFO(...) XLOG_INFO(__VA_ARGS__)
#define LOG_VERBOSE(...) XLOG_VERBOSE(__VA_ARGS__)
#define LOG_WARNING(...) XLOG_WARNING(__VA_ARGS__)
#define LOG_ERROR(...) XLOG_ERROR(__VA_ARGS__)
#define LOG_EXCEPTION(...) XLOG_EXCEPTION(__VA_ARGS__)
#define CHECK(...) XLOG_CHECK(__VA_ARGS__)
#define NOT_REACHED() XLOG_UNREACHABLE()
#define DCHECK(...) XLOG_DEBUG_CHECK(__VA_ARGS__)
#define DNOT_REACHED() XLOG_DEBUG_UNREACHABLE()
#endif