1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/win32ole/win32ole.c: fix typo. [ruby-core:31564][Bug #3636]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28809 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
suke 2010-07-31 23:54:49 +00:00
parent b6ebd0622c
commit e8f2d9e808
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Sun Aug 1 08:51:52 2010 Masaki Suketa <masaki.suketa@nifty.ne.jp>
* ext/win32ole/win32ole.c: fix typo. [ruby-core:31564][Bug #3636]
Sat Jul 31 23:15:27 2010 Tanaka Akira <akr@fsij.org>
* ext/pathname/pathname.c (path_inspect): Pathname#inspect translated

View file

@ -64,7 +64,7 @@
#define V_I1REF(X) V_UNION(X, pcVal)
#endif
#ifndef U_UI2REF
#ifndef V_UI2REF
#define V_UI2REF(X) V_UNION(X, puiVal)
#endif
@ -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.4.9"
#define WIN32OLE_VERSION "1.5.0"
typedef HRESULT (STDAPICALLTYPE FNCOCREATEINSTANCEEX)
(REFCLSID, IUnknown*, DWORD, COSERVERINFO*, DWORD, MULTI_QI*);