summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-22 09:49:09 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-22 09:49:09 +0000
commitede8b08c6ea722d8452d625e7b685eb18ce5a126 (patch)
tree0bf86fcdf36f19432cfa3e6602dde9c60b625c64 /ext
parentd14c37da3d5f03dc7ace71276690ba3cc83b6fa7 (diff)
merges r23469 from trunk into ruby_1_9_1.
-- * ext/win32ole/win32ole.c (foletypelib_name): should return encoded name corresponding to WIN32OLE.codepage. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@23533 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/win32ole/win32ole.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/win32ole/win32ole.c b/ext/win32ole/win32ole.c
index 51f6b58b0..86f4f2e08 100644
--- a/ext/win32ole/win32ole.c
+++ b/ext/win32ole/win32ole.c
@@ -130,7 +130,7 @@ const IID IID_IMultiLanguage2 = {0xDCCFC164, 0x2B38, 0x11d2, {0xB7, 0xEC, 0x00,
#define WC2VSTR(x) ole_wc2vstr((x), TRUE)
-#define WIN32OLE_VERSION "1.3.9"
+#define WIN32OLE_VERSION "1.4.0"
typedef HRESULT (STDAPICALLTYPE FNCOCREATEINSTANCEEX)
(REFCLSID, IUnknown*, DWORD, COSERVERINFO*, DWORD, MULTI_QI*);
@@ -5256,7 +5256,8 @@ foletypelib_guid(VALUE self)
static VALUE
foletypelib_name(VALUE self)
{
- return rb_ivar_get(self, rb_intern("name"));
+ VALUE name = rb_ivar_get(self, rb_intern("name"));
+ return rb_enc_str_new(StringValuePtr(name), strlen(StringValuePtr(name)), cWIN32OLE_enc);
}
/*