Skip to content

Commit

Permalink
* ext/dl/win32/registry.rb: Corrected RegCreateKeyExA signature.
Browse files Browse the repository at this point in the history
  Patch by Rafal Michalski [ruby-core:33874] [Ruby 1.9-Bug#4203]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30377 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
luislavena committed Dec 25, 2010
1 parent acc6950 commit 5d47965
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Sun Dec 26 04:31:15 2010 Luis Lavena <[email protected]>

* ext/dl/win32/registry.rb: Corrected RegCreateKeyExA signature.
Patch by Rafal Michalski [ruby-core:33874] [Ruby 1.9-Bug#4203]

Sun Dec 26 02:31:58 2010 KOSAKI Motohiro <[email protected]>

* io.c (advice_arg_check): Change argument check.
Expand Down
2 changes: 1 addition & 1 deletion ext/dl/win32/lib/win32/registry.rb
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ module API
dlload "advapi32.dll"
[
"long RegOpenKeyExA(void *, void *, long, long, void *)",
"long RegCreateKeyExA(void *, void *, long, long, long, long, void *, void *)",
"long RegCreateKeyExA(void *, void *, long, long, long, long, void *, void *, void *)",
"long RegEnumValueA(void *, long, void *, void *, void *, void *, void *, void *)",
"long RegEnumKeyExA(void *, long, void *, void *, void *, void *, void *, void *)",
"long RegQueryValueExA(void *, void *, void *, void *, void *, void *)",
Expand Down

0 comments on commit 5d47965

Please sign in to comment.