windows-pr 0.5.4 → 0.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGES CHANGED
@@ -1,3 +1,7 @@
1
+ = 0.5.5 - 11-Oct-2006
2
+ * Prototype modification for VirtualQuery and VirtualQueryEx in the
3
+ Windows::Memory module.
4
+
1
5
  = 0.5.4 - 8-Sep-2006
2
6
  * Added the Windows::NetworkManagement module, which contains methods like
3
7
  NetUserAdd(), etc.
@@ -25,8 +25,8 @@ module Windows
25
25
  VirtualLock = Win32API.new('kernel32', 'VirtualLock', 'PL', 'I')
26
26
  VirtualProtect = Win32API.new('kernel32', 'VirtualProtect', 'PLLP', 'I')
27
27
  VirtualProtectEx = Win32API.new('kernel32', 'VirtualProtectEx', 'LPLLP', 'I')
28
- VirtualQuery = Win32API.new('kernel32', 'VirtualQuery', 'PPL', 'L')
29
- VirtualQueryEx = Win32API.new('kernel32', 'VirtualQueryEx', 'LPPL', 'L')
28
+ VirtualQuery = Win32API.new('kernel32', 'VirtualQuery', 'LPL', 'L')
29
+ VirtualQueryEx = Win32API.new('kernel32', 'VirtualQueryEx', 'LLPL', 'L')
30
30
  VirtualUnlock = Win32API.new('kernel32', 'VirtualUnlock', 'PL', 'I')
31
31
  ZeroMemory = Win32API.new('kernel32', 'RtlZeroMemory', 'PL', 'I')
32
32
 
data/windows-pr.gemspec CHANGED
@@ -2,7 +2,7 @@ require "rubygems"
2
2
 
3
3
  spec = Gem::Specification.new do |gem|
4
4
  gem.name = "windows-pr"
5
- gem.version = "0.5.4"
5
+ gem.version = "0.5.5"
6
6
  gem.author = "Daniel J. Berger"
7
7
  gem.email = "djberg96@gmail.com"
8
8
  gem.homepage = "http://www.rubyforge.org/projects/win32utils"
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: windows-pr
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.5.4
7
- date: 2006-09-08 00:00:00 -06:00
6
+ version: 0.5.5
7
+ date: 2006-10-13 00:00:00 -06:00
8
8
  summary: Windows functions and constants predefined via Win32API
9
9
  require_paths:
10
10
  - lib