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

Side by Side Diff: swig/Lib/runtime.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/python/wchar.i ('k') | swig/Lib/shared_ptr.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 /* ----------------------------------------------------------------------------- *
2 Standard SWIG API for use inside user code.
3
4 Don't include this file directly, run the command
5 swig -python -external-runtime
6 Also, read the Modules chapter of the SWIG Manual.
7
8 * ----------------------------------------------------------------------------- */
9
10 #ifdef SWIG_MODULE_CLIENTDATA_TYPE
11
12 SWIGRUNTIMEINLINE swig_type_info *
13 SWIG_TypeQuery(SWIG_MODULE_CLIENTDATA_TYPE clientdata, const char *name) {
14 swig_module_info *module = SWIG_GetModule(clientdata);
15 return SWIG_TypeQueryModule(module, module, name);
16 }
17
18 SWIGRUNTIMEINLINE swig_type_info *
19 SWIG_MangledTypeQuery(SWIG_MODULE_CLIENTDATA_TYPE clientdata, const char *name) {
20 swig_module_info *module = SWIG_GetModule(clientdata);
21 return SWIG_MangledTypeQueryModule(module, module, name);
22 }
23
24 #else
25
26 SWIGRUNTIMEINLINE swig_type_info *
27 SWIG_TypeQuery(const char *name) {
28 swig_module_info *module = SWIG_GetModule(NULL);
29 return SWIG_TypeQueryModule(module, module, name);
30 }
31
32 SWIGRUNTIMEINLINE swig_type_info *
33 SWIG_MangledTypeQuery(const char *name) {
34 swig_module_info *module = SWIG_GetModule(NULL);
35 return SWIG_MangledTypeQueryModule(module, module, name);
36 }
37
38 #endif
OLDNEW
« no previous file with comments | « swig/Lib/python/wchar.i ('k') | swig/Lib/shared_ptr.i » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698