Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: src/plugin/Config.h

Issue 5516878722105344: Issue #276 - replace TCHAR etc. with wide-character versions (Closed)
Patch Set: Created Aug. 5, 2014, 3:17 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/plugin/Console.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #ifndef _CONFIG_H 1 #ifndef _CONFIG_H
2 #define _CONFIG_H 2 #define _CONFIG_H
3 3
4 #define TIMER_THREAD_SLEEP_TAB_LOOP 10000 4 #define TIMER_THREAD_SLEEP_TAB_LOOP 10000
5 5
6 // Should we to on debug information 6 // Should we to on debug information
7 #ifdef _DEBUG 7 #ifdef _DEBUG
8 #define ENABLE_DEBUG_INFO 8 #define ENABLE_DEBUG_INFO
9 #define ENABLE_DEBUG_GENERAL 9 #define ENABLE_DEBUG_GENERAL
10 #define ENABLE_DEBUG_ERROR 10 #define ENABLE_DEBUG_ERROR
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 134
135 // If defined, we will surround most of the methods with try catch 135 // If defined, we will surround most of the methods with try catch
136 #undef CATCHALL 136 #undef CATCHALL
137 137
138 // If defined, we will throw exceptions for errors 138 // If defined, we will throw exceptions for errors
139 // Otherwise we will try to handle it in a silent way, and only report 139 // Otherwise we will try to handle it in a silent way, and only report
140 #undef THROW_ON_ERROR 140 #undef THROW_ON_ERROR
141 141
142 // Status bar pane name 142 // Status bar pane name
143 #if (defined PRODUCT_ADBLOCKPLUS) 143 #if (defined PRODUCT_ADBLOCKPLUS)
144 #define STATUSBAR_PANE_NAME "AdblockPlusStatusBarPane" 144 #define STATUSBAR_PANE_NAME L"AdblockPlusStatusBarPane"
145 #endif 145 #endif
146 146
147 // Status bar pane number 147 // Status bar pane number
148 #if (defined PRODUCT_ADBLOCKPLUS) 148 #if (defined PRODUCT_ADBLOCKPLUS)
149 #define STATUSBAR_PANE_NUMBER 2 149 #define STATUSBAR_PANE_NUMBER 2
150 #endif 150 #endif
151 151
152 #define ENGINE_STARTUP_TIMEOUT 10000 152 #define ENGINE_STARTUP_TIMEOUT 10000
153 153
154 154
155 155
156 #endif // _CONFIG_H 156 #endif // _CONFIG_H
OLDNEW
« no previous file with comments | « no previous file | src/plugin/Console.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld