mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
win32ole.c: correct declaration
* ext/win32ole/win32ole.c (hash2named_arg): correct declaration to fix build failure. a patch by phasis68 (Heesob Park) at [ruby-core:58710]. [Bug #9184] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43932 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3005a9fb62
commit
e1a7f50ce6
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Sat Nov 30 18:05:38 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/win32ole/win32ole.c (hash2named_arg): correct declaration to fix
|
||||
build failure. a patch by phasis68 (Heesob Park) at
|
||||
[ruby-core:58710]. [Bug #9184]
|
||||
|
||||
Sat Nov 30 17:46:35 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* eval.c (ruby_cleanup): determine exit status and signal to terminate
|
||||
|
|
|
@ -383,7 +383,7 @@ static VALUE fole_s_create_guid(VALUE self);
|
|||
static VALUE fole_s_ole_initialize(VALUE self);
|
||||
static VALUE fole_s_ole_uninitialize(VALUE self);
|
||||
static VALUE fole_initialize(int argc, VALUE *argv, VALUE self);
|
||||
static VALUE hash2named_arg(VALUE pair, struct oleparam* pOp);
|
||||
static VALUE hash2named_arg(RB_BLOCK_CALL_FUNC_ARGLIST(pair, op));
|
||||
static VALUE set_argv(VARIANTARG* realargs, unsigned int beg, unsigned int end);
|
||||
static VALUE ole_invoke(int argc, VALUE *argv, VALUE self, USHORT wFlags, BOOL is_bracket);
|
||||
static VALUE fole_invoke(int argc, VALUE *argv, VALUE self);
|
||||
|
|
Loading…
Reference in a new issue