windows-pr 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES CHANGED
@@ -1,3 +1,8 @@
1
+ = 1.0.2 - 5-Mar-2009
2
+ * Fixed the library for the AttachThreadInput function in the Windows::Thread
3
+ module. Thanks go to an anonymous user for the spot.
4
+ * Added the beginnings of the Windows::Security::Authentication module.
5
+
1
6
  = 1.0.1 - 9-Feb-2009
2
7
  * Added the Windows::Window::Menu module.
3
8
  * Added the Windows::Window::Classes module.
@@ -0,0 +1,30 @@
1
+ require 'windows/api'
2
+
3
+ module Windows
4
+ module Security
5
+ module Authentication
6
+ API.auto_namespace = 'Windows::Security::Authentication'
7
+ API.auto_constant = true
8
+ API.auto_method = true
9
+ API.auto_unicode = false
10
+
11
+ POLICY_VIEW_LOCAL_INFORMATION = 0x00000001
12
+ POLICY_VIEW_AUDIT_INFORMATION = 0x00000002
13
+ POLICY_GET_PRIVATE_INFORMATION = 0x00000004
14
+ POLICY_TRUST_ADMIN = 0x00000008
15
+ POLICY_CREATE_ACCOUNT = 0x00000010
16
+ POLICY_CREATE_SECRET = 0x00000020
17
+ POLICY_CREATE_PRIVILEGE = 0x00000040
18
+ POLICY_SET_DEFAULT_QUOTA_LIMITS = 0x00000080
19
+ POLICY_SET_AUDIT_REQUIREMENTS = 0x00000100
20
+ POLICY_AUDIT_LOG_ADMIN = 0x00000200
21
+ POLICY_SERVER_ADMIN = 0x00000400
22
+ POLICY_LOOKUP_NAMES = 0x00000800
23
+ POLICY_NOTIFICATION = 0x00001000
24
+
25
+ API.new('LsaOpenPolicy', 'PPLP', 'L', 'advapi32')
26
+ API.new('LsaClose', 'L', 'L', 'advapi32')
27
+ API.new('LsaNtStatusToWinError', 'L', 'L', 'advapi32')
28
+ end
29
+ end
30
+ end
@@ -53,7 +53,7 @@ module Windows
53
53
  API.new('TlsSetValue', 'LL', 'B')
54
54
 
55
55
  begin
56
- API.new('AttachThreadInput', 'LLI', 'B')
56
+ API.new('AttachThreadInput', 'LLI', 'B', 'user32')
57
57
  API.new('GetThreadIOPendingFlag', 'LP', 'B')
58
58
  rescue Win32::API::LoadLibraryError
59
59
  # Windows XP or later
data/test/tc_clipboard.rb CHANGED
@@ -3,49 +3,39 @@
3
3
  #
4
4
  # Test case for the Windows::Clipboard module.
5
5
  #####################################################################
6
- require "windows/clipboard"
7
- require "test/unit"
6
+ require 'windows/clipboard'
7
+ require 'test/unit'
8
8
 
9
- class ClipboardFoo
9
+ class TC_Windows_Clipboard < Test::Unit::TestCase
10
10
  include Windows::Clipboard
11
- end
12
11
 
13
- class TC_Windows_Clipboard < Test::Unit::TestCase
14
- def setup
15
- @foo = ClipboardFoo.new
12
+ def test_methods
13
+ assert_respond_to(self, :OpenClipboard)
14
+ assert_respond_to(self, :CloseClipboard)
15
+ assert_respond_to(self, :GetClipboardData)
16
+ assert_respond_to(self, :EmptyClipboard)
17
+ assert_respond_to(self, :SetClipboardData)
18
+ assert_respond_to(self, :CountClipboardFormats)
19
+ assert_respond_to(self, :IsClipboardFormatAvailable)
20
+ assert_respond_to(self, :GetClipboardFormatName)
21
+ assert_respond_to(self, :EnumClipboardFormats)
22
+ assert_respond_to(self, :RegisterClipboardFormat)
16
23
  end
17
-
18
- def test_numeric_constants
19
- assert_equal(1, ClipboardFoo::CF_TEXT)
20
- assert_equal(2, ClipboardFoo::CF_BITMAP)
21
- assert_equal(3, ClipboardFoo::CF_METAFILEPICT)
22
- assert_equal(4, ClipboardFoo::CF_SYLK)
23
- assert_equal(5, ClipboardFoo::CF_DIF)
24
- assert_equal(6, ClipboardFoo::CF_TIFF)
25
- assert_equal(7, ClipboardFoo::CF_OEMTEXT)
26
- assert_equal(8, ClipboardFoo::CF_DIB)
27
- assert_equal(9, ClipboardFoo::CF_PALETTE)
28
- assert_equal(10, ClipboardFoo::CF_PENDATA)
29
- assert_equal(11, ClipboardFoo::CF_RIFF)
30
- assert_equal(12, ClipboardFoo::CF_WAVE)
31
- assert_equal(13, ClipboardFoo::CF_UNICODETEXT)
32
- assert_equal(14, ClipboardFoo::CF_ENHMETAFILE)
33
- end
34
-
35
- def test_method_constants
36
- assert_not_nil(ClipboardFoo::OpenClipboard)
37
- assert_not_nil(ClipboardFoo::CloseClipboard)
38
- assert_not_nil(ClipboardFoo::GetClipboardData)
39
- assert_not_nil(ClipboardFoo::EmptyClipboard)
40
- assert_not_nil(ClipboardFoo::SetClipboardData)
41
- assert_not_nil(ClipboardFoo::CountClipboardFormats)
42
- assert_not_nil(ClipboardFoo::IsClipboardFormatAvailable)
43
- assert_not_nil(ClipboardFoo::GetClipboardFormatName)
44
- assert_not_nil(ClipboardFoo::EnumClipboardFormats)
45
- assert_not_nil(ClipboardFoo::RegisterClipboardFormat)
46
- end
47
-
48
- def teardown
49
- @foo = nil
24
+
25
+ def test_constants
26
+ assert_equal(1, CF_TEXT)
27
+ assert_equal(2, CF_BITMAP)
28
+ assert_equal(3, CF_METAFILEPICT)
29
+ assert_equal(4, CF_SYLK)
30
+ assert_equal(5, CF_DIF)
31
+ assert_equal(6, CF_TIFF)
32
+ assert_equal(7, CF_OEMTEXT)
33
+ assert_equal(8, CF_DIB)
34
+ assert_equal(9, CF_PALETTE)
35
+ assert_equal(10, CF_PENDATA)
36
+ assert_equal(11, CF_RIFF)
37
+ assert_equal(12, CF_WAVE)
38
+ assert_equal(13, CF_UNICODETEXT)
39
+ assert_equal(14, CF_ENHMETAFILE)
50
40
  end
51
41
  end
data/test/tc_console.rb CHANGED
@@ -6,109 +6,103 @@
6
6
  require 'windows/console'
7
7
  require 'test/unit'
8
8
 
9
- class ConsoleFoo
9
+ class TC_Windows_Console < Test::Unit::TestCase
10
10
  include Windows::Console
11
- end
12
11
 
13
- class TC_Windows_Console < Test::Unit::TestCase
14
12
  def setup
15
- @foo = ConsoleFoo.new
16
13
  @ver = `ver`.chomp
17
14
  end
18
15
 
19
16
  def test_numeric_constants
20
- assert_equal(0, ConsoleFoo::CTRL_C_EVENT)
21
- assert_equal(1, ConsoleFoo::CTRL_BREAK_EVENT)
22
- assert_equal(5, ConsoleFoo::CTRL_LOGOFF_EVENT)
23
- assert_equal(6, ConsoleFoo::CTRL_SHUTDOWN_EVENT)
24
-
25
- assert_equal(0x0001, ConsoleFoo::ENABLE_PROCESSED_INPUT)
26
- assert_equal(0x0002, ConsoleFoo::ENABLE_LINE_INPUT)
27
- assert_equal(0x0002, ConsoleFoo::ENABLE_WRAP_AT_EOL_OUTPUT)
28
- assert_equal(0x0004, ConsoleFoo::ENABLE_ECHO_INPUT)
29
- assert_equal(0x0008, ConsoleFoo::ENABLE_WINDOW_INPUT)
30
- assert_equal(0x0010, ConsoleFoo::ENABLE_MOUSE_INPUT)
31
- assert_equal(0x0020, ConsoleFoo::ENABLE_INSERT_MODE)
32
- assert_equal(0x0040, ConsoleFoo::ENABLE_QUICK_EDIT_MODE)
33
-
34
- assert_equal(-10, ConsoleFoo::STD_INPUT_HANDLE)
35
- assert_equal(-11, ConsoleFoo::STD_OUTPUT_HANDLE)
36
- assert_equal(-12, ConsoleFoo::STD_ERROR_HANDLE)
17
+ assert_equal(0, CTRL_C_EVENT)
18
+ assert_equal(1, CTRL_BREAK_EVENT)
19
+ assert_equal(5, CTRL_LOGOFF_EVENT)
20
+ assert_equal(6, CTRL_SHUTDOWN_EVENT)
21
+ assert_equal(0x0001, ENABLE_PROCESSED_INPUT)
22
+ assert_equal(0x0002, ENABLE_LINE_INPUT)
23
+ assert_equal(0x0002, ENABLE_WRAP_AT_EOL_OUTPUT)
24
+ assert_equal(0x0004, ENABLE_ECHO_INPUT)
25
+ assert_equal(0x0008, ENABLE_WINDOW_INPUT)
26
+ assert_equal(0x0010, ENABLE_MOUSE_INPUT)
27
+ assert_equal(0x0020, ENABLE_INSERT_MODE)
28
+ assert_equal(0x0040, ENABLE_QUICK_EDIT_MODE)
29
+ assert_equal(-10, STD_INPUT_HANDLE)
30
+ assert_equal(-11, STD_OUTPUT_HANDLE)
31
+ assert_equal(-12, STD_ERROR_HANDLE)
37
32
  end
38
33
 
39
34
  def test_method_constants
40
- assert_not_nil(ConsoleFoo::AddConsoleAlias)
41
- assert_not_nil(ConsoleFoo::AllocConsole)
42
- assert_not_nil(ConsoleFoo::CreateConsoleScreenBuffer)
43
- assert_not_nil(ConsoleFoo::FillConsoleOutputAttribute)
44
- assert_not_nil(ConsoleFoo::FillConsoleOutputCharacter)
45
- assert_not_nil(ConsoleFoo::FlushConsoleInputBuffer)
46
- assert_not_nil(ConsoleFoo::FreeConsole)
47
- assert_not_nil(ConsoleFoo::GenerateConsoleCtrlEvent)
48
- assert_not_nil(ConsoleFoo::GetConsoleAlias)
49
- assert_not_nil(ConsoleFoo::GetConsoleAliases)
50
- assert_not_nil(ConsoleFoo::GetConsoleAliasesLength)
51
- assert_not_nil(ConsoleFoo::GetConsoleAliasExes)
52
- assert_not_nil(ConsoleFoo::GetConsoleAliasExesLength)
53
- assert_not_nil(ConsoleFoo::GetConsoleCP)
54
- assert_not_nil(ConsoleFoo::GetConsoleCursorInfo)
55
- assert_not_nil(ConsoleFoo::GetConsoleMode)
56
- assert_not_nil(ConsoleFoo::GetConsoleOutputCP)
57
- assert_not_nil(ConsoleFoo::GetConsoleScreenBufferInfo)
58
- assert_not_nil(ConsoleFoo::GetConsoleTitle)
59
- assert_not_nil(ConsoleFoo::GetConsoleWindow)
60
- assert_not_nil(ConsoleFoo::GetLargestConsoleWindowSize)
61
- assert_not_nil(ConsoleFoo::GetNumberOfConsoleInputEvents)
62
- assert_not_nil(ConsoleFoo::GetNumberOfConsoleMouseButtons)
63
- assert_not_nil(ConsoleFoo::GetStdHandle)
64
- assert_not_nil(ConsoleFoo::PeekConsoleInput)
65
- assert_not_nil(ConsoleFoo::ReadConsole)
66
- assert_not_nil(ConsoleFoo::ReadConsoleInput)
67
- assert_not_nil(ConsoleFoo::ReadConsoleOutput)
68
- assert_not_nil(ConsoleFoo::ReadConsoleOutputAttribute)
69
- assert_not_nil(ConsoleFoo::ReadConsoleOutputCharacter)
70
- assert_not_nil(ConsoleFoo::ScrollConsoleScreenBuffer)
71
- assert_not_nil(ConsoleFoo::SetConsoleActiveScreenBuffer)
72
- assert_not_nil(ConsoleFoo::SetConsoleCP)
73
- assert_not_nil(ConsoleFoo::SetConsoleCtrlHandler)
74
- assert_not_nil(ConsoleFoo::SetConsoleCursorInfo)
75
- assert_not_nil(ConsoleFoo::SetConsoleCursorPosition)
76
- assert_not_nil(ConsoleFoo::SetConsoleMode)
77
- assert_not_nil(ConsoleFoo::SetConsoleOutputCP)
78
- assert_not_nil(ConsoleFoo::SetConsoleScreenBufferSize)
79
- assert_not_nil(ConsoleFoo::SetConsoleTextAttribute)
80
- assert_not_nil(ConsoleFoo::SetConsoleTitle)
81
- assert_not_nil(ConsoleFoo::SetConsoleWindowInfo)
82
- assert_not_nil(ConsoleFoo::SetStdHandle)
83
- assert_not_nil(ConsoleFoo::WriteConsole)
84
- assert_not_nil(ConsoleFoo::WriteConsoleInput)
85
- assert_not_nil(ConsoleFoo::WriteConsoleOutput)
86
- assert_not_nil(ConsoleFoo::WriteConsoleOutputAttribute)
87
- assert_not_nil(ConsoleFoo::WriteConsoleOutputCharacter)
35
+ assert_respond_to(self, :AddConsoleAlias)
36
+ assert_respond_to(self, :AllocConsole)
37
+ assert_respond_to(self, :CreateConsoleScreenBuffer)
38
+ assert_respond_to(self, :FillConsoleOutputAttribute)
39
+ assert_respond_to(self, :FillConsoleOutputCharacter)
40
+ assert_respond_to(self, :FlushConsoleInputBuffer)
41
+ assert_respond_to(self, :FreeConsole)
42
+ assert_respond_to(self, :GenerateConsoleCtrlEvent)
43
+ assert_respond_to(self, :GetConsoleAlias)
44
+ assert_respond_to(self, :GetConsoleAliases)
45
+ assert_respond_to(self, :GetConsoleAliasesLength)
46
+ assert_respond_to(self, :GetConsoleAliasExes)
47
+ assert_respond_to(self, :GetConsoleAliasExesLength)
48
+ assert_respond_to(self, :GetConsoleCP)
49
+ assert_respond_to(self, :GetConsoleCursorInfo)
50
+ assert_respond_to(self, :GetConsoleMode)
51
+ assert_respond_to(self, :GetConsoleOutputCP)
52
+ assert_respond_to(self, :GetConsoleScreenBufferInfo)
53
+ assert_respond_to(self, :GetConsoleTitle)
54
+ assert_respond_to(self, :GetConsoleWindow)
55
+ assert_respond_to(self, :GetLargestConsoleWindowSize)
56
+ assert_respond_to(self, :GetNumberOfConsoleInputEvents)
57
+ assert_respond_to(self, :GetNumberOfConsoleMouseButtons)
58
+ assert_respond_to(self, :GetStdHandle)
59
+ assert_respond_to(self, :PeekConsoleInput)
60
+ assert_respond_to(self, :ReadConsole)
61
+ assert_respond_to(self, :ReadConsoleInput)
62
+ assert_respond_to(self, :ReadConsoleOutput)
63
+ assert_respond_to(self, :ReadConsoleOutputAttribute)
64
+ assert_respond_to(self, :ReadConsoleOutputCharacter)
65
+ assert_respond_to(self, :ScrollConsoleScreenBuffer)
66
+ assert_respond_to(self, :SetConsoleActiveScreenBuffer)
67
+ assert_respond_to(self, :SetConsoleCP)
68
+ assert_respond_to(self, :SetConsoleCtrlHandler)
69
+ assert_respond_to(self, :SetConsoleCursorInfo)
70
+ assert_respond_to(self, :SetConsoleCursorPosition)
71
+ assert_respond_to(self, :SetConsoleMode)
72
+ assert_respond_to(self, :SetConsoleOutputCP)
73
+ assert_respond_to(self, :SetConsoleScreenBufferSize)
74
+ assert_respond_to(self, :SetConsoleTextAttribute)
75
+ assert_respond_to(self, :SetConsoleTitle)
76
+ assert_respond_to(self, :SetConsoleWindowInfo)
77
+ assert_respond_to(self, :SetStdHandle)
78
+ assert_respond_to(self, :WriteConsole)
79
+ assert_respond_to(self, :WriteConsoleInput)
80
+ assert_respond_to(self, :WriteConsoleOutput)
81
+ assert_respond_to(self, :WriteConsoleOutputAttribute)
82
+ assert_respond_to(self, :WriteConsoleOutputCharacter)
88
83
  end
89
84
 
90
85
  def test_method_constants_xp_or_later
91
86
  if @ver =~ /XP/
92
- assert_not_nil(ConsoleFoo::AttachConsole)
93
- assert_not_nil(ConsoleFoo::GetConsoleDisplayMode)
94
- assert_not_nil(ConsoleFoo::GetConsoleFontSize)
95
- assert_not_nil(ConsoleFoo::GetConsoleProcessList)
96
- assert_not_nil(ConsoleFoo::GetConsoleSelectionInfo)
97
- assert_not_nil(ConsoleFoo::GetCurrentConsoleFont)
98
- assert_not_nil(ConsoleFoo::SetConsoleDisplayMode)
87
+ assert_respond_to(self, :AttachConsole)
88
+ assert_respond_to(self, :GetConsoleDisplayMode)
89
+ assert_respond_to(self, :GetConsoleFontSize)
90
+ assert_respond_to(self, :GetConsoleProcessList)
91
+ assert_respond_to(self, :GetConsoleSelectionInfo)
92
+ assert_respond_to(self, :GetCurrentConsoleFont)
93
+ assert_respond_to(self, :SetConsoleDisplayMode)
99
94
  end
100
95
  end
101
96
 
102
97
  def test_explicit_ansi
103
- assert_not_nil(ConsoleFoo::GetConsoleAliasA)
98
+ assert_respond_to(self, :GetConsoleAliasA)
104
99
  end
105
100
 
106
101
  def test_explicit_unicode
107
- assert_not_nil(ConsoleFoo::GetConsoleAliasW)
102
+ assert_respond_to(self, :GetConsoleAliasW)
108
103
  end
109
104
 
110
105
  def teardown
111
- @foo = nil
112
106
  @ver = nil
113
107
  end
114
108
  end
@@ -0,0 +1,34 @@
1
+ #####################################################################
2
+ # tc_security_authentication.rb
3
+ #
4
+ # Test case for the Windows::Security::Authentication module.
5
+ #####################################################################
6
+ require 'windows/security/authentication'
7
+ require 'test/unit'
8
+
9
+ class TC_Windows_Security_Authentication < Test::Unit::TestCase
10
+
11
+ include Windows::Security::Authentication
12
+
13
+ def test_methods
14
+ assert_respond_to(self, :LsaOpenPolicy)
15
+ assert_respond_to(self, :LsaClose)
16
+ assert_respond_to(self, :LsaNtStatusToWinError)
17
+ end
18
+
19
+ def test_constants
20
+ assert_not_nil(POLICY_VIEW_LOCAL_INFORMATION)
21
+ assert_not_nil(POLICY_VIEW_AUDIT_INFORMATION)
22
+ assert_not_nil(POLICY_GET_PRIVATE_INFORMATION)
23
+ assert_not_nil(POLICY_TRUST_ADMIN)
24
+ assert_not_nil(POLICY_CREATE_ACCOUNT)
25
+ assert_not_nil(POLICY_CREATE_SECRET)
26
+ assert_not_nil(POLICY_CREATE_PRIVILEGE)
27
+ assert_not_nil(POLICY_SET_DEFAULT_QUOTA_LIMITS)
28
+ assert_not_nil(POLICY_SET_AUDIT_REQUIREMENTS)
29
+ assert_not_nil(POLICY_AUDIT_LOG_ADMIN)
30
+ assert_not_nil(POLICY_SERVER_ADMIN)
31
+ assert_not_nil(POLICY_LOOKUP_NAMES)
32
+ assert_not_nil(POLICY_NOTIFICATION)
33
+ end
34
+ end
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 = '1.0.1'
5
+ gem.version = '1.0.2'
6
6
  gem.authors = ['Daniel J. Berger', 'Park Heesob']
7
7
  gem.email = 'djberg96@gmail.com'
8
8
  gem.homepage = 'http://www.rubyforge.org/projects/win32utils'
@@ -12,13 +12,12 @@ spec = Gem::Specification.new do |gem|
12
12
  gem.description = 'Windows functions and constants bundled via Win32::API'
13
13
  gem.test_files = Dir["test/tc*"]
14
14
  gem.has_rdoc = true
15
- gem.files = Dir["doc/*.txt"] + Dir["lib/windows/**/*.rb"]
16
- gem.files += Dir["test/*"] + Dir["[A-Z]*"]
15
+ gem.files = Dir["**/*"]
17
16
  gem.files.reject! { |fn| fn.include? "CVS" }
18
17
  gem.require_path = "lib"
19
18
  gem.extra_rdoc_files = ['MANIFEST', 'README', 'CHANGES']
20
19
  gem.add_dependency('windows-api', '>= 0.3.0')
21
- gem.add_dependency('win32-api', '>= 1.3.0')
20
+ gem.add_dependency('win32-api', '>= 1.4.0')
22
21
  end
23
22
 
24
23
  if $0 == __FILE__
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: windows-pr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel J. Berger
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2009-02-09 00:00:00 -07:00
13
+ date: 2009-03-05 00:00:00 -07:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -31,7 +31,7 @@ dependencies:
31
31
  requirements:
32
32
  - - ">="
33
33
  - !ruby/object:Gem::Version
34
- version: 1.3.0
34
+ version: 1.4.0
35
35
  version:
36
36
  description: Windows functions and constants bundled via Win32::API
37
37
  email: djberg96@gmail.com
@@ -44,8 +44,13 @@ extra_rdoc_files:
44
44
  - README
45
45
  - CHANGES
46
46
  files:
47
+ - CHANGES
48
+ - doc
47
49
  - doc/conversion_guide.txt
50
+ - lib
51
+ - lib/windows
48
52
  - lib/windows/clipboard.rb
53
+ - lib/windows/com
49
54
  - lib/windows/com/automation.rb
50
55
  - lib/windows/com.rb
51
56
  - lib/windows/console.rb
@@ -57,6 +62,7 @@ files:
57
62
  - lib/windows/file.rb
58
63
  - lib/windows/filesystem.rb
59
64
  - lib/windows/file_mapping.rb
65
+ - lib/windows/gdi
60
66
  - lib/windows/gdi/bitmap.rb
61
67
  - lib/windows/gdi/device_context.rb
62
68
  - lib/windows/gdi/painting_drawing.rb
@@ -64,6 +70,7 @@ files:
64
70
  - lib/windows/library.rb
65
71
  - lib/windows/limits.rb
66
72
  - lib/windows/memory.rb
73
+ - lib/windows/msvcrt
67
74
  - lib/windows/msvcrt/buffer.rb
68
75
  - lib/windows/msvcrt/directory.rb
69
76
  - lib/windows/msvcrt/file.rb
@@ -71,15 +78,19 @@ files:
71
78
  - lib/windows/msvcrt/string.rb
72
79
  - lib/windows/msvcrt/time.rb
73
80
  - lib/windows/national.rb
81
+ - lib/windows/network
74
82
  - lib/windows/network/management.rb
75
83
  - lib/windows/network/snmp.rb
76
84
  - lib/windows/network/winsock.rb
77
85
  - lib/windows/nio.rb
86
+ - lib/windows/ntfs
78
87
  - lib/windows/ntfs/winternl.rb
79
88
  - lib/windows/path.rb
80
89
  - lib/windows/pipe.rb
81
90
  - lib/windows/process.rb
82
91
  - lib/windows/registry.rb
92
+ - lib/windows/security
93
+ - lib/windows/security/authentication.rb
83
94
  - lib/windows/security.rb
84
95
  - lib/windows/service.rb
85
96
  - lib/windows/shell.rb
@@ -91,6 +102,7 @@ files:
91
102
  - lib/windows/tool_helper.rb
92
103
  - lib/windows/unicode.rb
93
104
  - lib/windows/volume.rb
105
+ - lib/windows/window
94
106
  - lib/windows/window/classes.rb
95
107
  - lib/windows/window/dialog.rb
96
108
  - lib/windows/window/menu.rb
@@ -98,6 +110,10 @@ files:
98
110
  - lib/windows/window/properties.rb
99
111
  - lib/windows/window/timer.rb
100
112
  - lib/windows/window.rb
113
+ - MANIFEST
114
+ - Rakefile
115
+ - README
116
+ - test
101
117
  - test/tc_clipboard.rb
102
118
  - test/tc_com.rb
103
119
  - test/tc_com_automation.rb
@@ -131,6 +147,7 @@ files:
131
147
  - test/tc_process.rb
132
148
  - test/tc_registry.rb
133
149
  - test/tc_security.rb
150
+ - test/tc_security_authentication.rb
134
151
  - test/tc_service.rb
135
152
  - test/tc_shell.rb
136
153
  - test/tc_sound.rb
@@ -148,13 +165,6 @@ files:
148
165
  - test/tc_window_message.rb
149
166
  - test/tc_window_properties.rb
150
167
  - test/tc_window_timer.rb
151
- - CHANGES
152
- - doc
153
- - lib
154
- - MANIFEST
155
- - Rakefile
156
- - README
157
- - test
158
168
  - windows-pr.gemspec
159
169
  has_rdoc: true
160
170
  homepage: http://www.rubyforge.org/projects/win32utils
@@ -216,6 +226,7 @@ test_files:
216
226
  - test/tc_process.rb
217
227
  - test/tc_registry.rb
218
228
  - test/tc_security.rb
229
+ - test/tc_security_authentication.rb
219
230
  - test/tc_service.rb
220
231
  - test/tc_shell.rb
221
232
  - test/tc_sound.rb