mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
registry.rb: fix API names
* ext/win32/lib/win32/registry.rb (DeleteValue, DeleteKey): fix API names. [ruby-core:74863] [Bug #12264] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54529 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3cd3c9d74c
commit
21992b6cbd
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun Apr 10 20:54:16 2016 Joe Swatosh <joe.swatosh@gmail.com>
|
||||
|
||||
* ext/win32/lib/win32/registry.rb (DeleteValue, DeleteKey): fix
|
||||
API names. [ruby-core:74863] [Bug #12264]
|
||||
|
||||
Sun Apr 10 17:47:42 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* file.c (rb_realpath_internal): no argument conversions since
|
||||
|
|
|
@ -333,11 +333,11 @@ For detail, see the MSDN[http://msdn.microsoft.com/library/en-us/sysinfo/base/pr
|
|||
end
|
||||
|
||||
def DeleteValue(hkey, name)
|
||||
check RegDeleteValue.call(hkey, make_wstr(name))
|
||||
check RegDeleteValueW.call(hkey, make_wstr(name))
|
||||
end
|
||||
|
||||
def DeleteKey(hkey, name)
|
||||
check RegDeleteKey.call(hkey, make_wstr(name))
|
||||
check RegDeleteKeyW.call(hkey, make_wstr(name))
|
||||
end
|
||||
|
||||
def FlushKey(hkey)
|
||||
|
|
Loading…
Reference in a new issue