Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(213)

Side by Side Diff: third_party/minicrt/libctiny.h

Issue 624713003: Keep only base/extractor.[cc|h]. (Closed) Base URL: https://chromium.googlesource.com/external/omaha.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/minicrt/isctype.cc ('k') | third_party/minicrt/lldiv.obj » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 //
2 // Custom include file that I've added to all libctiny source code.
3 // Here we handle global settings/overrides (e.g. ensuring Unicode is not define d).
4 //
5
6 #ifndef TOTAL_RECALL_COMMON_MINICRT_LIBCTINY_H__
7 #define TOTAL_RECALL_COMMON_MINICRT_LIBCTINY_H__
8
9 // Make sure WIN32_LEAN_AND_MEAN is defined
10 #ifndef WIN32_LEAN_AND_MEAN
11 #define WIN32_LEAN_AND_MEAN
12 #endif
13
14 // Make sure Unicode is not defined
15 #ifdef UNICODE
16 #undef UNICODE
17 #endif
18
19 #ifdef _UNICODE
20 #undef _UNICODE
21 #endif
22
23 #endif // TOTAL_RECALL_COMMON_MINICRT_LIBCTINY_H__
OLDNEW
« no previous file with comments | « third_party/minicrt/isctype.cc ('k') | third_party/minicrt/lldiv.obj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698