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

Side by Side Diff: swig/Lib/typemaps/wstring.swg

Issue 553095: Checkin swig binaries for win, linux and Mac... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: '' Created 10 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « swig/Lib/typemaps/void.swg ('k') | swig/Lib/wchar.i » ('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 %ensure_fragment(SWIG_AsWCharPtrAndSize)
2 %ensure_fragment(SWIG_FromWCharPtrAndSize)
3
4
5 %types(wchar_t *);
6
7 %fragment("SWIG_pwchar_descriptor","header") {
8 SWIGINTERN swig_type_info*
9 SWIG_pwchar_descriptor()
10 {
11 static int init = 0;
12 static swig_type_info* info = 0;
13 if (!init) {
14 info = SWIG_TypeQuery("_p_wchar_t");
15 init = 1;
16 }
17 return info;
18 }
19 }
20
21 %include <typemaps/strings.swg>
22 %typemaps_string(%checkcode(UNISTRING), %checkcode(UNICHAR),
23 wchar_t, WChar, SWIG_AsWCharPtrAndSize, SWIG_FromWCharPtrAndSiz e, wcslen,
24 "<wchar.h>", WCHAR_MIN, WCHAR_MAX)
25
OLDNEW
« no previous file with comments | « swig/Lib/typemaps/void.swg ('k') | swig/Lib/wchar.i » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698