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

Unified Diff: third_party/sqlite/src/shell_icu_win.c

Issue 3108030: Move bundled copy of sqlite one level deeper to better separate it... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/sqlite/src/shell_icu_linux.c ('k') | third_party/sqlite/src/spec.template » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/shell_icu_win.c
===================================================================
--- third_party/sqlite/src/shell_icu_win.c (revision 56608)
+++ third_party/sqlite/src/shell_icu_win.c (working copy)
@@ -1,34 +0,0 @@
-/* Copyright 2007 Google Inc. All Rights Reserved.
-**/
-
-#include <windows.h>
-#include "unicode/udata.h"
-
-/*
-** This function attempts to load the ICU data tables from a DLL.
-** Returns 0 on failure, nonzero on success.
-** This a hack job of icu_utils.cc:Initialize(). It's Chrome-specific code.
-*/
-
-#define ICU_DATA_SYMBOL "icudt" U_ICU_VERSION_SHORT "_dat"
-int sqlite_shell_init_icu() {
- HMODULE module;
- FARPROC addr;
- UErrorCode err;
-
- wchar_t dll_name[12];
- wsprintf(dll_name, L"icudt%2S.dll", U_ICU_VERSION_SHORT);
- dll_name[11] = L'\0';
- module = LoadLibrary(dll_name);
- if (!module)
- return 0;
-
- addr = GetProcAddress(module, ICU_DATA_SYMBOL);
- if (!addr)
- return 0;
-
- err = U_ZERO_ERROR;
- udata_setCommonData(addr, &err);
-
- return 1;
-}
« no previous file with comments | « third_party/sqlite/src/shell_icu_linux.c ('k') | third_party/sqlite/src/spec.template » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698